X-Git-Url: https://www.ginac.de/ginac.git//ginac.git?p=ginac.git;a=blobdiff_plain;f=ginac%2Fidx.h;h=fa0b8ce35f952170fe926e62ea9e7d33f636a804;hp=8e460d4c96e58b063c59184e45a50cef87d39e96;hb=9eab44408b9213d8909b7a9e525f404ad06064dd;hpb=6b3768e8c544739ae53321539cb4d1e3112ded1b diff --git a/ginac/idx.h b/ginac/idx.h index 8e460d4c..fa0b8ce3 100644 --- a/ginac/idx.h +++ b/ginac/idx.h @@ -2,13 +2,33 @@ * * Interface to GiNaC's indices. */ -#ifndef _IDX_H_ -#define _IDX_H_ +/* + * GiNaC Copyright (C) 1999 Johannes Gutenberg University Mainz, Germany + * + * This program is free software; you can redistribute it and/or modify + * it under the terms of the GNU General Public License as published by + * the Free Software Foundation; either version 2 of the License, or + * (at your option) any later version. + * + * This program is distributed in the hope that it will be useful, + * but WITHOUT ANY WARRANTY; without even the implied warranty of + * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + * GNU General Public License for more details. + * + * You should have received a copy of the GNU General Public License + * along with this program; if not, write to the Free Software + * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA + */ + +#ifndef __GINAC_IDX_H__ +#define __GINAC_IDX_H__ #include #include +#include +#include -#include "basic.h" +namespace GiNaC { class idx : public basic { @@ -54,6 +74,8 @@ public: bool is_symbolic(void) const; unsigned get_value(void) const; bool is_covariant(void) const; + void setname(string const & n) {name=n;} + string getname(void) const {return name;} // member variables protected: @@ -70,11 +92,13 @@ protected: extern const idx some_idx; extern type_info const & typeid_idx; -// macros - -#define ex_to_idx(X) (static_cast(*(X).bp)) +// utility functions +inline const idx &ex_to_idx(const ex &e) +{ + return static_cast(*e.bp); +} -// other functions +// global functions typedef vector exvector; @@ -87,4 +111,6 @@ ex subs_indices(ex const & e, exvector const & idxv_contra, exvector const & idxv_co); unsigned count_index(ex const & e, ex const & i); -#endif // ndef _IDX_H_ +} // namespace GiNaC + +#endif // ndef __GINAC_IDX_H__