X-Git-Url: https://www.ginac.de/ginac.git//ginac.git?p=ginac.git;a=blobdiff_plain;f=ginac%2Findexed.cpp;h=20e54752a93d89c90e17607c953f0e62741fbacd;hp=ffcf5141734b25af6d402908562a16c1fbfa91df;hb=0117bd6ef4af029934703940d59e1c70866937b0;hpb=a8507b8af1c08d9b27d98d57f95c7ca1a8671e27 diff --git a/ginac/indexed.cpp b/ginac/indexed.cpp index ffcf5141..20e54752 100644 --- a/ginac/indexed.cpp +++ b/ginac/indexed.cpp @@ -1,8 +1,9 @@ /** @file indexed.cpp * - * Implementation of GiNaC's index carrying objects. - * - * GiNaC Copyright (C) 1999 Johannes Gutenberg University Mainz, Germany + * Implementation of GiNaC's indexed expressions. */ + +/* + * GiNaC Copyright (C) 1999-2001 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 @@ -19,197 +20,362 @@ * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA */ -#include +#include +#include + +#include "indexed.h" +#include "idx.h" +#include "add.h" +#include "mul.h" +#include "ncmul.h" +#include "power.h" +#include "lst.h" +#include "inifcns.h" +#include "print.h" +#include "archive.h" +#include "utils.h" +#include "debugmsg.h" + +namespace GiNaC { -#include "ginac.h" +GINAC_IMPLEMENT_REGISTERED_CLASS(indexed, exprseq) ////////// // default constructor, destructor, copy constructor assignment operator and helpers ////////// -// public +indexed::indexed() : symmetry(unknown) +{ + debugmsg("indexed default constructor", LOGLEVEL_CONSTRUCT); + tinfo_key = TINFO_indexed; +} -indexed::indexed() +void indexed::copy(const indexed & other) { - debugmsg("indexed default constructor",LOGLEVEL_CONSTRUCT); - tinfo_key=TINFO_INDEXED; + inherited::copy(other); + symmetry = other.symmetry; } -indexed::~indexed() +DEFAULT_DESTROY(indexed) + +////////// +// other constructors +////////// + +indexed::indexed(const ex & b) : inherited(b), symmetry(unknown) { - debugmsg("indexed destructor",LOGLEVEL_DESTRUCT); - destroy(0); + debugmsg("indexed constructor from ex", LOGLEVEL_CONSTRUCT); + tinfo_key = TINFO_indexed; + assert_all_indices_of_type_idx(); } -indexed::indexed(indexed const & other) +indexed::indexed(const ex & b, const ex & i1) : inherited(b, i1), symmetry(unknown) { - debugmsg("indexed copy constructor",LOGLEVEL_CONSTRUCT); - copy (other); + debugmsg("indexed constructor from ex,ex", LOGLEVEL_CONSTRUCT); + tinfo_key = TINFO_indexed; + assert_all_indices_of_type_idx(); } -indexed const & indexed::operator=(indexed const & other) +indexed::indexed(const ex & b, const ex & i1, const ex & i2) : inherited(b, i1, i2), symmetry(unknown) { - debugmsg("indexed operator=",LOGLEVEL_ASSIGNMENT); - if (this != &other) { - destroy(1); - copy(other); - } - return *this; + debugmsg("indexed constructor from ex,ex,ex", LOGLEVEL_CONSTRUCT); + tinfo_key = TINFO_indexed; + assert_all_indices_of_type_idx(); } -// protected +indexed::indexed(const ex & b, const ex & i1, const ex & i2, const ex & i3) : inherited(b, i1, i2, i3), symmetry(unknown) +{ + debugmsg("indexed constructor from ex,ex,ex,ex", LOGLEVEL_CONSTRUCT); + tinfo_key = TINFO_indexed; + assert_all_indices_of_type_idx(); +} -void indexed::copy(indexed const & other) +indexed::indexed(const ex & b, const ex & i1, const ex & i2, const ex & i3, const ex & i4) : inherited(b, i1, i2, i3, i4), symmetry(unknown) { - exprseq::copy(other); + debugmsg("indexed constructor from ex,ex,ex,ex,ex", LOGLEVEL_CONSTRUCT); + tinfo_key = TINFO_indexed; + assert_all_indices_of_type_idx(); } -void indexed::destroy(bool call_parent) +indexed::indexed(const ex & b, symmetry_type symm, const ex & i1, const ex & i2) : inherited(b, i1, i2), symmetry(symm) { - if (call_parent) { - exprseq::destroy(call_parent); - } + debugmsg("indexed constructor from ex,symmetry,ex,ex", LOGLEVEL_CONSTRUCT); + tinfo_key = TINFO_indexed; + assert_all_indices_of_type_idx(); } -////////// -// other constructors -////////// +indexed::indexed(const ex & b, symmetry_type symm, const ex & i1, const ex & i2, const ex & i3) : inherited(b, i1, i2, i3), symmetry(symm) +{ + debugmsg("indexed constructor from ex,symmetry,ex,ex,ex", LOGLEVEL_CONSTRUCT); + tinfo_key = TINFO_indexed; + assert_all_indices_of_type_idx(); +} -// public +indexed::indexed(const ex & b, symmetry_type symm, const ex & i1, const ex & i2, const ex & i3, const ex & i4) : inherited(b, i1, i2, i3, i4), symmetry(symm) +{ + debugmsg("indexed constructor from ex,symmetry,ex,ex,ex,ex", LOGLEVEL_CONSTRUCT); + tinfo_key = TINFO_indexed; + assert_all_indices_of_type_idx(); +} -indexed::indexed(ex const & i1) : exprseq(i1) +indexed::indexed(const ex & b, const exvector & v) : inherited(b), symmetry(unknown) { - debugmsg("indexed constructor from ex",LOGLEVEL_CONSTRUCT); - tinfo_key=TINFO_INDEXED; - ASSERT(all_of_type_idx()); + debugmsg("indexed constructor from ex,exvector", LOGLEVEL_CONSTRUCT); + seq.insert(seq.end(), v.begin(), v.end()); + tinfo_key = TINFO_indexed; + assert_all_indices_of_type_idx(); } -indexed::indexed(ex const & i1, ex const & i2) : exprseq(i1,i2) +indexed::indexed(const ex & b, symmetry_type symm, const exvector & v) : inherited(b), symmetry(symm) { - debugmsg("indexed constructor from ex,ex",LOGLEVEL_CONSTRUCT); - tinfo_key=TINFO_INDEXED; - ASSERT(all_of_type_idx()); + debugmsg("indexed constructor from ex,symmetry,exvector", LOGLEVEL_CONSTRUCT); + seq.insert(seq.end(), v.begin(), v.end()); + tinfo_key = TINFO_indexed; + assert_all_indices_of_type_idx(); } -indexed::indexed(ex const & i1, ex const & i2, ex const & i3) - : exprseq(i1,i2,i3) +indexed::indexed(symmetry_type symm, const exprseq & es) : inherited(es), symmetry(symm) { - debugmsg("indexed constructor from ex,ex,ex",LOGLEVEL_CONSTRUCT); - tinfo_key=TINFO_INDEXED; - ASSERT(all_of_type_idx()); + debugmsg("indexed constructor from symmetry,exprseq", LOGLEVEL_CONSTRUCT); + tinfo_key = TINFO_indexed; + assert_all_indices_of_type_idx(); } -indexed::indexed(exvector const & iv) : exprseq(iv) +indexed::indexed(symmetry_type symm, const exvector & v, bool discardable) : inherited(v, discardable), symmetry(symm) { - debugmsg("indexed constructor from exvector",LOGLEVEL_CONSTRUCT); - tinfo_key=TINFO_INDEXED; - ASSERT(all_of_type_idx()); + debugmsg("indexed constructor from symmetry,exvector", LOGLEVEL_CONSTRUCT); + tinfo_key = TINFO_indexed; + assert_all_indices_of_type_idx(); } -indexed::indexed(exvector * ivp) : exprseq(ivp) +indexed::indexed(symmetry_type symm, exvector * vp) : inherited(vp), symmetry(symm) { - debugmsg("indexed constructor from exvector *",LOGLEVEL_CONSTRUCT); - tinfo_key=TINFO_INDEXED; - ASSERT(all_of_type_idx()); + debugmsg("indexed constructor from symmetry,exvector *", LOGLEVEL_CONSTRUCT); + tinfo_key = TINFO_indexed; + assert_all_indices_of_type_idx(); } ////////// -// functions overriding virtual functions from bases classes +// archiving ////////// -// public - -basic * indexed::duplicate() const +indexed::indexed(const archive_node &n, const lst &sym_lst) : inherited(n, sym_lst) { - debugmsg("indexed duplicate",LOGLEVEL_DUPLICATE); - return new indexed(*this); + debugmsg("indexed constructor from archive_node", LOGLEVEL_CONSTRUCT); + unsigned int symm; + if (!(n.find_unsigned("symmetry", symm))) + throw (std::runtime_error("unknown indexed symmetry type in archive")); } -void indexed::printraw(ostream & os) const +void indexed::archive(archive_node &n) const { - debugmsg("indexed printraw",LOGLEVEL_PRINT); - os << "indexed(indices="; - printrawindices(os); - os << ",hash=" << hashvalue << ",flags=" << flags << ")"; + inherited::archive(n); + n.add_unsigned("symmetry", symmetry); } -void indexed::printtree(ostream & os, unsigned indent) const +DEFAULT_UNARCHIVE(indexed) + +////////// +// functions overriding virtual functions from bases classes +////////// + +void indexed::print(const print_context & c, unsigned level) const { - debugmsg("indexed printtree",LOGLEVEL_PRINT); - os << string(indent,' ') << "indexed: " << seq.size() << " indices"; - os << ",hash=" << hashvalue << ",flags=" << flags << endl; - printtreeindices(os,indent); + debugmsg("indexed print", LOGLEVEL_PRINT); + GINAC_ASSERT(seq.size() > 0); + + if (is_of_type(c, print_tree)) { + + c.s << std::string(level, ' ') << class_name() + << std::hex << ", hash=0x" << hashvalue << ", flags=0x" << flags << std::dec + << ", " << seq.size()-1 << " indices"; + switch (symmetry) { + case symmetric: c.s << ", symmetric"; break; + case antisymmetric: c.s << ", antisymmetric"; break; + default: break; + } + c.s << std::endl; + unsigned delta_indent = static_cast(c).delta_indent; + seq[0].print(c, level + delta_indent); + printindices(c, level + delta_indent); + + } else { + + bool is_tex = is_of_type(c, print_latex); + const ex & base = seq[0]; + bool need_parens = is_ex_exactly_of_type(base, add) || is_ex_exactly_of_type(base, mul) + || is_ex_exactly_of_type(base, ncmul) || is_ex_exactly_of_type(base, power) + || is_ex_of_type(base, indexed); + if (is_tex) + c.s << "{"; + if (need_parens) + c.s << "("; + base.print(c); + if (need_parens) + c.s << ")"; + if (is_tex) + c.s << "}"; + printindices(c, level); + } } -void indexed::print(ostream & os, unsigned upper_precedence) const +bool indexed::info(unsigned inf) const { - debugmsg("indexed print",LOGLEVEL_PRINT); - os << "UNNAMEDINDEX"; - printindices(os); + if (inf == info_flags::indexed) return true; + if (inf == info_flags::has_indices) return seq.size() > 1; + return inherited::info(inf); } -void indexed::printcsrc(ostream & os, unsigned type, - unsigned upper_precedence) const +struct idx_is_not : public binary_function { + bool operator() (const ex & e, unsigned inf) const { + return !(ex_to_idx(e).get_value().info(inf)); + } +}; + +bool indexed::all_index_values_are(unsigned inf) const { - debugmsg("indexed print csrc",LOGLEVEL_PRINT); - print(os,upper_precedence); + // No indices? Then no property can be fulfilled + if (seq.size() < 2) + return false; + + // Check all indices + return find_if(seq.begin() + 1, seq.end(), bind2nd(idx_is_not(), inf)) == seq.end(); } -bool indexed::info(unsigned inf) const +int indexed::compare_same_type(const basic & other) const { - if (inf==info_flags::indexed) return true; - if (inf==info_flags::has_indices) return seq.size()!=0; - return exprseq::info(inf); + GINAC_ASSERT(is_of_type(other, indexed)); + return inherited::compare_same_type(other); } -exvector indexed::get_indices(void) const -{ - return seq; +// The main difference between sort_index_vector() and canonicalize_indices() +// is that the latter takes the symmetry of the object into account. Once we +// implement mixed symmetries, canonicalize_indices() will only be able to +// reorder index pairs with known symmetry properties, while sort_index_vector() +// always sorts the whole vector. - /* - idxvector filtered_indices; - filtered_indices.reserve(indices.size()); - for (idxvector::const_iterator cit=indices.begin(); cit!=indices.end(); ++cit) { - if ((*cit).get_type()==t) { - filtered_indices.push_back(*cit); - } - } - return filtered_indices; - */ +/** Bring a vector of indices into a canonic order. This operation only makes + * sense if the object carrying these indices is either symmetric or totally + * antisymmetric with respect to the indices. + * + * @param itbegin Start of index vector + * @param itend End of index vector + * @param antisymm Whether the object is antisymmetric + * @return the sign introduced by the reordering of the indices if the object + * is antisymmetric (or 0 if two equal indices are encountered). For + * symmetric objects, this is always +1. If the index vector was + * already in a canonic order this function returns INT_MAX. */ +static int canonicalize_indices(exvector::iterator itbegin, exvector::iterator itend, bool antisymm) +{ + bool something_changed = false; + int sig = 1; + + // Simple bubble sort algorithm should be sufficient for the small + // number of indices expected + exvector::iterator it1 = itbegin, next_to_last_idx = itend - 1; + while (it1 != next_to_last_idx) { + exvector::iterator it2 = it1 + 1; + while (it2 != itend) { + int cmpval = it1->compare(*it2); + if (cmpval == 1) { + it1->swap(*it2); + something_changed = true; + if (antisymm) + sig = -sig; + } else if (cmpval == 0 && antisymm) { + something_changed = true; + sig = 0; + } + it2++; + } + it1++; + } + + return something_changed ? sig : INT_MAX; } -// protected - -int indexed::compare_same_type(basic const & other) const +ex indexed::eval(int level) const { - ASSERT(is_of_type(other,indexed)); - return exprseq::compare_same_type(other); + // First evaluate children, then we will end up here again + if (level > 1) + return indexed(symmetry, evalchildren(level)); + + const ex &base = seq[0]; + + // If the base object is 0, the whole object is 0 + if (base.is_zero()) + return _ex0(); + + // If the base object is a product, pull out the numeric factor + if (is_ex_exactly_of_type(base, mul) && is_ex_exactly_of_type(base.op(base.nops() - 1), numeric)) { + exvector v = seq; + ex f = ex_to_numeric(base.op(base.nops() - 1)); + v[0] = seq[0] / f; + return f * thisexprseq(v); + } + + // Canonicalize indices according to the symmetry properties + if (seq.size() > 2 && (symmetry != unknown && symmetry != mixed)) { + exvector v = seq; + int sig = canonicalize_indices(v.begin() + 1, v.end(), symmetry == antisymmetric); + if (sig != INT_MAX) { + // Something has changed while sorting indices, more evaluations later + if (sig == 0) + return _ex0(); + return ex(sig) * thisexprseq(v); + } + } + + // Let the class of the base object perform additional evaluations + return base.bp->eval_indexed(*this); } -bool indexed::is_equal_same_type(basic const & other) const +int indexed::degree(const ex & s) const { - ASSERT(is_of_type(other,indexed)); - return exprseq::is_equal_same_type(other); + return is_equal(*s.bp) ? 1 : 0; } -unsigned indexed::return_type(void) const +int indexed::ldegree(const ex & s) const { - return return_types::noncommutative; + return is_equal(*s.bp) ? 1 : 0; } - -unsigned indexed::return_type_tinfo(void) const + +ex indexed::coeff(const ex & s, int n) const { - return tinfo_key; + if (is_equal(*s.bp)) + return n==1 ? _ex1() : _ex0(); + else + return n==0 ? ex(*this) : _ex0(); } -ex indexed::thisexprseq(exvector const & v) const +ex indexed::thisexprseq(const exvector & v) const { - return indexed(v); + return indexed(symmetry, v); } ex indexed::thisexprseq(exvector * vp) const { - return indexed(vp); + return indexed(symmetry, vp); +} + +ex indexed::expand(unsigned options) const +{ + GINAC_ASSERT(seq.size() > 0); + + if ((options & expand_options::expand_indexed) && is_ex_exactly_of_type(seq[0], add)) { + + // expand_indexed expands (a+b).i -> a.i + b.i + const ex & base = seq[0]; + ex sum = _ex0(); + for (unsigned i=0; i 1) { + + exvector::const_iterator it=seq.begin() + 1, itend = seq.end(); + + if (is_of_type(c, print_latex)) { + + // TeX output: group by variance + bool first = true; + bool covariant = true; + + while (it != itend) { + bool cur_covariant = (is_ex_of_type(*it, varidx) ? ex_to_varidx(*it).is_covariant() : true); + if (first || cur_covariant != covariant) { + if (!first) + c.s << "}"; + covariant = cur_covariant; + if (covariant) + c.s << "_{"; + else + c.s << "^{"; + } + it->print(c, level); + c.s << " "; + first = false; + it++; + } + c.s << "}"; + + } else { + + // Ordinary output + while (it != itend) { + it->print(c, level); + it++; + } + } + } +} -void indexed::printrawindices(ostream & os) const +/** Check whether all indices are of class idx. This function is used + * internally to make sure that all constructed indexed objects really + * carry indices and not some other classes. */ +void indexed::assert_all_indices_of_type_idx(void) const { - if (seq.size()!=0) { - for (exvector::const_iterator cit=seq.begin(); cit!=seq.end(); ++cit) { - (*cit).printraw(os); - os << ","; - } - } + GINAC_ASSERT(seq.size() > 0); + exvector::const_iterator it = seq.begin() + 1, itend = seq.end(); + while (it != itend) { + if (!is_ex_of_type(*it, idx)) + throw(std::invalid_argument("indices of indexed object must be of type idx")); + it++; + } } -void indexed::printtreeindices(ostream & os, unsigned indent) const +////////// +// global functions +////////// + +/** Check whether two sorted index vectors are consistent (i.e. equal). */ +static bool indices_consistent(const exvector & v1, const exvector & v2) { - if (seq.size()!=0) { - for (exvector::const_iterator cit=seq.begin(); cit!=seq.end(); ++cit) { - os << string(indent+delta_indent,' '); - (*cit).printraw(os); - os << endl; - } - } + // Number of indices must be the same + if (v1.size() != v2.size()) + return false; + + return equal(v1.begin(), v1.end(), v2.begin(), ex_is_equal()); } -void indexed::printindices(ostream & os) const +exvector indexed::get_indices(void) const { - if (seq.size()!=0) { - if (seq.size()>1) { - os << "{"; - } - exvector::const_iterator last=seq.end()-1; - exvector::const_iterator cit=seq.begin(); - for (; cit!=last; ++cit) { - (*cit).print(os); - os << ","; - } - (*cit).print(os); - if (seq.size()>1) { - os << "}"; - } - } + GINAC_ASSERT(seq.size() >= 1); + return exvector(seq.begin() + 1, seq.end()); } -bool indexed::all_of_type_idx(void) const +exvector indexed::get_dummy_indices(void) const { - // used only inside of ASSERTs - for (exvector::const_iterator cit=seq.begin(); cit!=seq.end(); ++cit) { - if (!is_ex_of_type(*cit,idx)) return false; - } - return true; + exvector free_indices, dummy_indices; + find_free_and_dummy(seq.begin() + 1, seq.end(), free_indices, dummy_indices); + return dummy_indices; } -////////// -// static member variables -////////// +exvector indexed::get_dummy_indices(const indexed & other) const +{ + exvector indices = get_free_indices(); + exvector other_indices = other.get_free_indices(); + indices.insert(indices.end(), other_indices.begin(), other_indices.end()); + exvector dummy_indices; + find_dummy_indices(indices, dummy_indices); + return dummy_indices; +} -// none +bool indexed::has_dummy_index_for(const ex & i) const +{ + exvector::const_iterator it = seq.begin() + 1, itend = seq.end(); + while (it != itend) { + if (is_dummy_pair(*it, i)) + return true; + it++; + } + return false; +} + +exvector indexed::get_free_indices(void) const +{ + exvector free_indices, dummy_indices; + find_free_and_dummy(seq.begin() + 1, seq.end(), free_indices, dummy_indices); + return free_indices; +} + +exvector add::get_free_indices(void) const +{ + exvector free_indices; + for (unsigned i=0; i 0) { + if (find_if(global_dummy_indices.begin(), global_dummy_indices.end(), bind2nd(ex_is_equal(), *it)) == global_dummy_indices.end()) { + global_dummy_indices.push_back(*it); + global_size++; + remaining--; + } + it++; + } + } + + // Replace index symbols in expression + GINAC_ASSERT(local_size <= global_size); + bool all_equal = true; + lst local_syms, global_syms; + for (unsigned i=0; i a*a + GINAC_ASSERT(e.op(1).is_equal(_ex2())); + v.push_back(e.op(0)); + v.push_back(e.op(0)); + } else { + for (int i=0; i 1); + exvector::iterator it1, itend = v.end(), next_to_last = itend - 1; + for (it1 = v.begin(); it1 != next_to_last; it1++) { + +try_again: + if (!is_ex_of_type(*it1, indexed)) + continue; + + bool first_noncommutative = (it1->return_type() != return_types::commutative); + + // Indexed factor found, get free indices and look for contraction + // candidates + exvector free1, dummy1; + find_free_and_dummy(ex_to_indexed(*it1).seq.begin() + 1, ex_to_indexed(*it1).seq.end(), free1, dummy1); + + exvector::iterator it2; + for (it2 = it1 + 1; it2 != itend; it2++) { + + if (!is_ex_of_type(*it2, indexed)) + continue; + + bool second_noncommutative = (it2->return_type() != return_types::commutative); + + // Find free indices of second factor and merge them with free + // indices of first factor + exvector un; + find_free_and_dummy(ex_to_indexed(*it2).seq.begin() + 1, ex_to_indexed(*it2).seq.end(), un, dummy1); + un.insert(un.end(), free1.begin(), free1.end()); + + // Check whether the two factors share dummy indices + exvector free, dummy; + find_free_and_dummy(un, free, dummy); + if (dummy.size() == 0) + continue; + + // At least one dummy index, is it a defined scalar product? + bool contracted = false; + if (free.size() == 0) { + if (sp.is_defined(*it1, *it2)) { + *it1 = sp.evaluate(*it1, *it2); + *it2 = _ex1(); + goto contraction_done; + } + } + + // Contraction of symmetric with antisymmetric object is zero + if ((ex_to_indexed(*it1).symmetry == indexed::symmetric && + ex_to_indexed(*it2).symmetry == indexed::antisymmetric + || ex_to_indexed(*it1).symmetry == indexed::antisymmetric && + ex_to_indexed(*it2).symmetry == indexed::symmetric) + && dummy.size() > 1) { + free_indices.clear(); + return _ex0(); + } + + // Try to contract the first one with the second one + contracted = it1->op(0).bp->contract_with(it1, it2, v); + if (!contracted) { + + // That didn't work; maybe the second object knows how to + // contract itself with the first one + contracted = it2->op(0).bp->contract_with(it2, it1, v); + } + if (contracted) { +contraction_done: + if (first_noncommutative || second_noncommutative + || is_ex_exactly_of_type(*it1, add) || is_ex_exactly_of_type(*it2, add) + || is_ex_exactly_of_type(*it1, mul) || is_ex_exactly_of_type(*it2, mul) + || is_ex_exactly_of_type(*it1, ncmul) || is_ex_exactly_of_type(*it2, ncmul)) { + + // One of the factors became a sum or product: + // re-expand expression and run again + // Non-commutative products are always re-expanded to give + // simplify_ncmul() the chance to re-order and canonicalize + // the product + ex r = (non_commutative ? ex(ncmul(v, true)) : ex(mul(v))); + return simplify_indexed(r, free_indices, dummy_indices, sp); + } + + // Both objects may have new indices now or they might + // even not be indexed objects any more, so we have to + // start over + something_changed = true; + goto try_again; + } + } + } + + // Find free indices (concatenate them all and call find_free_and_dummy()) + // and all dummy indices that appear + exvector un, individual_dummy_indices; + it1 = v.begin(); itend = v.end(); + while (it1 != itend) { + exvector free_indices_of_factor; + if (is_ex_of_type(*it1, indexed)) { + exvector dummy_indices_of_factor; + find_free_and_dummy(ex_to_indexed(*it1).seq.begin() + 1, ex_to_indexed(*it1).seq.end(), free_indices_of_factor, dummy_indices_of_factor); + individual_dummy_indices.insert(individual_dummy_indices.end(), dummy_indices_of_factor.begin(), dummy_indices_of_factor.end()); + } else + free_indices_of_factor = it1->get_free_indices(); + un.insert(un.end(), free_indices_of_factor.begin(), free_indices_of_factor.end()); + it1++; + } + exvector local_dummy_indices; + find_free_and_dummy(un, free_indices, local_dummy_indices); + local_dummy_indices.insert(local_dummy_indices.end(), individual_dummy_indices.begin(), individual_dummy_indices.end()); + + ex r; + if (something_changed) + r = non_commutative ? ex(ncmul(v, true)) : ex(mul(v)); + else + r = e; + + // Dummy index renaming + r = rename_dummy_indices(r, dummy_indices, local_dummy_indices); + + // Product of indexed object with a scalar? + if (is_ex_exactly_of_type(r, mul) && r.nops() == 2 + && is_ex_exactly_of_type(r.op(1), numeric) && is_ex_of_type(r.op(0), indexed)) + return r.op(0).op(0).bp->scalar_mul_indexed(r.op(0), ex_to_numeric(r.op(1))); + else + return r; +} + +/** Simplify indexed expression, return list of free indices. */ +ex simplify_indexed(const ex & e, exvector & free_indices, exvector & dummy_indices, const scalar_products & sp) +{ + // Expand the expression + ex e_expanded = e.expand(); + + // Simplification of single indexed object: just find the free indices + // and perform dummy index renaming + if (is_ex_of_type(e_expanded, indexed)) { + const indexed &i = ex_to_indexed(e_expanded); + exvector local_dummy_indices; + find_free_and_dummy(i.seq.begin() + 1, i.seq.end(), free_indices, local_dummy_indices); + return rename_dummy_indices(e_expanded, dummy_indices, local_dummy_indices); + } + + // Simplification of sum = sum of simplifications, check consistency of + // free indices in each term + if (is_ex_exactly_of_type(e_expanded, add)) { + bool first = true; + ex sum = _ex0(); + free_indices.clear(); + + for (unsigned i=0; iadd_indexed(sum, term); + else + sum += term; + } + } + } + + return sum; + } + + // Simplification of products + if (is_ex_exactly_of_type(e_expanded, mul) + || is_ex_exactly_of_type(e_expanded, ncmul) + || (is_ex_exactly_of_type(e_expanded, power) && is_ex_of_type(e_expanded.op(0), indexed) && e_expanded.op(1).is_equal(_ex2()))) + return simplify_indexed_product(e_expanded, free_indices, dummy_indices, sp); + + // Cannot do anything + free_indices.clear(); + return e_expanded; +} + +ex simplify_indexed(const ex & e) +{ + exvector free_indices, dummy_indices; + scalar_products sp; + return simplify_indexed(e, free_indices, dummy_indices, sp); +} + +ex simplify_indexed(const ex & e, const scalar_products & sp) +{ + exvector free_indices, dummy_indices; + return simplify_indexed(e, free_indices, dummy_indices, sp); +} + +ex symmetrize(const ex & e) +{ + return symmetrize(e, e.get_free_indices()); +} + +ex antisymmetrize(const ex & e) +{ + return antisymmetrize(e, e.get_free_indices()); +} ////////// -// global constants +// helper classes ////////// -const indexed some_indexed; -type_info const & typeid_indexed=typeid(some_indexed); +void scalar_products::add(const ex & v1, const ex & v2, const ex & sp) +{ + spm[make_key(v1, v2)] = sp; +} + +void scalar_products::add_vectors(const lst & l) +{ + // Add all possible pairs of products + unsigned num = l.nops(); + for (unsigned i=0; isecond; +} + +void scalar_products::debugprint(void) const +{ + std::cerr << "map size=" << spm.size() << std::endl; + for (spmap::const_iterator cit=spm.begin(); cit!=spm.end(); ++cit) { + const spmapkey & k = cit->first; + std::cerr << "item key=(" << k.first << "," << k.second; + std::cerr << "), value=" << cit->second << std::endl; + } +} + +/** Make key from object pair. */ +spmapkey scalar_products::make_key(const ex & v1, const ex & v2) +{ + // If indexed, extract base objects + ex s1 = is_ex_of_type(v1, indexed) ? v1.op(0) : v1; + ex s2 = is_ex_of_type(v2, indexed) ? v2.op(0) : v2; + + // Enforce canonical order in pair + if (s1.compare(s2) > 0) + return spmapkey(s2, s1); + else + return spmapkey(s1, s2); +} +} // namespace GiNaC