X-Git-Url: https://www.ginac.de/ginac.git//ginac.git?a=blobdiff_plain;f=ginac%2Finifcns.h;h=fd0d9e49f1e6e7e5ad6fcf582ef05c12a8a61b46;hb=cb85fdf34e2b96f35fa65d9b6b6a1a0b30512ea4;hp=3d170ff8df5435d332971e9731e3795c3cbaefc4;hpb=c8ba9c6cf819792cbf88d25b324406b67d5cc49a;p=ginac.git diff --git a/ginac/inifcns.h b/ginac/inifcns.h index 3d170ff8..fd0d9e49 100644 --- a/ginac/inifcns.h +++ b/ginac/inifcns.h @@ -133,24 +133,6 @@ DECLARE_FUNCTION_2P(Derivative) ex lsolve(const ex &eqns, const ex &symbols); -/** Symmetrize expression over a set of objects (symbols, indices). */ -ex symmetrize(const ex & e, exvector::const_iterator first, exvector::const_iterator last); - -/** Symmetrize expression over a set of objects (symbols, indices). */ -inline ex symmetrize(const ex & e, const exvector & v) -{ - return symmetrize(e, v.begin(), v.end()); -} - -/** Antisymmetrize expression over a set of objects (symbols, indices). */ -ex antisymmetrize(const ex & e, exvector::const_iterator first, exvector::const_iterator last); - -/** Antisymmetrize expression over a set of objects (symbols, indices). */ -inline ex antisymmetrize(const ex & e, const exvector & v) -{ - return antisymmetrize(e, v.begin(), v.end()); -} - /** Check whether a function is the Order (O(n)) function. */ inline bool is_order_function(const ex & e) {