]> www.ginac.de Git - ginac.git/blobdiff - ginac/idx.cpp
hash value computation for indices takes index dimension into account
[ginac.git] / ginac / idx.cpp
index cc5f52c3fef153a30596efb2980bc8f012ab81f4..01692294041c3335c298fbfc96337bf826edf57c 100644 (file)
@@ -341,6 +341,23 @@ bool spinidx::match_same_type(const basic & other) const
        return inherited::match_same_type(other);
 }
 
+unsigned idx::calchash() const
+{
+       unsigned v = golden_ratio_hash(tinfo());
+       v = rotate_left(v);
+       v ^= value.gethash();
+       v = rotate_left(v);
+       v ^= dim.gethash();
+
+       // Store calculated hash value only if object is already evaluated
+       if (flags & status_flags::evaluated) {
+               setflag(status_flags::hash_calculated);
+               hashvalue = v;
+       }
+
+       return v;
+}
+
 /** By default, basic::evalf would evaluate the index value but we don't want
  *  a.1 to become a.(1.0). */
 ex idx::evalf(int level) const