X-Git-Url: https://www.ginac.de/ginac.git//ginac.git?p=ginac.git;a=blobdiff_plain;f=ginac%2Findexed.cpp;h=7dd2f0dae6f07c55392812634216974d0b05efa5;hp=0364d99746e97567c466aeced3e5d15a4bfb3339;hb=b5e7e31e6d33bbae4d635c27637c7e114b043735;hpb=afdd7fa8c6c0a587f7c80789198551383e8beb7b diff --git a/ginac/indexed.cpp b/ginac/indexed.cpp index 0364d997..7dd2f0da 100644 --- a/ginac/indexed.cpp +++ b/ginac/indexed.cpp @@ -107,6 +107,14 @@ indexed::indexed(ex const & i1, ex const & i2, ex const & i3) GINAC_ASSERT(all_of_type_idx()); } +indexed::indexed(ex const & i1, ex const & i2, ex const & i3, ex const & i4) + : exprseq(i1,i2,i3,i4) +{ + debugmsg("indexed constructor from ex,ex,ex,ex",LOGLEVEL_CONSTRUCT); + tinfo_key=TINFO_indexed; + GINAC_ASSERT(all_of_type_idx()); +} + indexed::indexed(exvector const & iv) : exprseq(iv) { debugmsg("indexed constructor from exvector",LOGLEVEL_CONSTRUCT);