]> www.ginac.de Git - ginac.git/blobdiff - ginac/idx.h
- put everything in "GiNaC" namespace
[ginac.git] / ginac / idx.h
index 07c18b48678d958d22dd1f93db10018adfd89ee8..fa0b8ce35f952170fe926e62ea9e7d33f636a804 100644 (file)
@@ -1,7 +1,8 @@
 /** @file idx.h
  *
 /** @file idx.h
  *
- *  Interface to GiNaC's indices.
- *
+ *  Interface to GiNaC's indices. */
+
+/*
  *  GiNaC Copyright (C) 1999 Johannes Gutenberg University Mainz, Germany
  *
  *  This program is free software; you can redistribute it and/or modify
  *  GiNaC Copyright (C) 1999 Johannes Gutenberg University Mainz, Germany
  *
  *  This program is free software; you can redistribute it and/or modify
 
 #include <string>
 #include <vector>
 
 #include <string>
 #include <vector>
+#include <ginac/basic.h>
+#include <ginac/ex.h>
+
+namespace GiNaC {
 
 class idx : public basic
 {
 
 class idx : public basic
 {
@@ -69,6 +74,8 @@ public:
     bool is_symbolic(void) const;
     unsigned get_value(void) const;
     bool is_covariant(void) const;
     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:
 
     // member variables
 protected:
@@ -85,11 +92,13 @@ protected:
 extern const idx some_idx;
 extern type_info const & typeid_idx;
 
 extern const idx some_idx;
 extern type_info const & typeid_idx;
 
-// macros
-
-#define ex_to_idx(X) (static_cast<idx const &>(*(X).bp))
+// utility functions
+inline const idx &ex_to_idx(const ex &e)
+{
+       return static_cast<const idx &>(*e.bp);
+}
 
 
-// other functions
+// global functions
 
 typedef vector<ex> exvector;
 
 
 typedef vector<ex> exvector;
 
@@ -102,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);
 
                 exvector const & idxv_co);
 unsigned count_index(ex const & e, ex const & i);
 
+} // namespace GiNaC
+
 #endif // ndef __GINAC_IDX_H__
 #endif // ndef __GINAC_IDX_H__