Cadabra
Computer algebra system for field theory problems
Loading...
Searching...
No Matches
collect_terms.hh
Go to the documentation of this file.
1
2#pragma once
3
4#include "Algorithm.hh"
5
6namespace cadabra {
7
11
12 class collect_terms : public Algorithm {
13 public:
14 collect_terms(const Kernel&, Ex&);
15
16 virtual bool can_apply(iterator);
17 virtual result_t apply(iterator&);
18
20 private:
23
24 typedef std::multimap<hashval_t, sibling_iterator> term_hash_t;
25 typedef term_hash_t::iterator term_hash_iterator_t;
26
28 };
29
30 }
Base class for all algorithms, containing generic routines and in particular the logic for index clas...
Definition Algorithm.hh:54
Definition Storage.hh:170
result_t
Keeping track of what algorithms have done to this expression.
Definition Storage.hh:200
Ex::sibling_iterator sibling_iterator
Definition ExManip.hh:14
Ex::iterator iterator
Definition ExManip.hh:12
Definition Kernel.hh:15
Collect symbolically equal terms in a sum.
Definition collect_terms.hh:12
term_hash_t::iterator term_hash_iterator_t
Definition collect_terms.hh:25
void remove_zeroed_terms(sibling_iterator, sibling_iterator)
Definition collect_terms.cc:55
virtual result_t apply(iterator &)
Definition collect_terms.cc:75
result_t collect_from_hash_map()
Definition collect_terms.cc:101
void fill_hash_map(iterator)
Definition collect_terms.cc:21
term_hash_t term_hash
Definition collect_terms.hh:27
virtual bool can_apply(iterator)
Definition collect_terms.cc:14
std::multimap< hashval_t, sibling_iterator > term_hash_t
Definition collect_terms.hh:24
Functions to handle the exchange properties of two or more symbols in a product.
Definition Adjform.cc:83