Lines Matching refs:vargs

34vargs[0].number()); if(!nr.FUNC() || (eo.approximation == APPROXIMATION_EXACT && nr.isApproximate(…
35vargs[0].number()); if(!nr.FUNC(vargs[1].number()) || (eo.approximation == APPROXIMATION_EXACT && …
40 int FactorialFunction::calculate(MathStructure &mstruct, const MathStructure &vargs, const Evaluati… in calculate() argument
43 …entsPositive(const MathStructure &vargs, bool) const {return vargs.size() == 1 && vargs[0].represe… in representsPositive() argument
45 …sNonNegative(const MathStructure &vargs, bool) const {return vargs.size() == 1 && vargs[0].represe… in representsNonNegative() argument
47 …sentsInteger(const MathStructure &vargs, bool) const {return vargs.size() == 1 && vargs[0].represe… in representsInteger() argument
48 …esentsNumber(const MathStructure &vargs, bool) const {return vargs.size() == 1 && vargs[0].represe… in representsNumber() argument
49 …entsRational(const MathStructure &vargs, bool) const {return vargs.size() == 1 && vargs[0].represe… in representsRational() argument
50 …presentsReal(const MathStructure &vargs, bool) const {return vargs.size() == 1 && vargs[0].represe… in representsReal() argument
51 bool FactorialFunction::representsNonComplex(const MathStructure &vargs, bool) const {return true;} in representsNonComplex() argument
53 …sentsNonZero(const MathStructure &vargs, bool) const {return vargs.size() == 1 && vargs[0].represe… in representsNonZero() argument
64 int DoubleFactorialFunction::calculate(MathStructure &mstruct, const MathStructure &vargs, const Ev… in calculate() argument
67 …entsPositive(const MathStructure &vargs, bool) const {return vargs.size() == 1 && vargs[0].represe… in representsPositive() argument
69 …sNonNegative(const MathStructure &vargs, bool) const {return vargs.size() == 1 && vargs[0].represe… in representsNonNegative() argument
71 …sentsInteger(const MathStructure &vargs, bool) const {return vargs.size() == 1 && vargs[0].represe… in representsInteger() argument
72 …esentsNumber(const MathStructure &vargs, bool) const {return vargs.size() == 1 && vargs[0].represe… in representsNumber() argument
73 …entsRational(const MathStructure &vargs, bool) const {return vargs.size() == 1 && vargs[0].represe… in representsRational() argument
74 …presentsReal(const MathStructure &vargs, bool) const {return vargs.size() == 1 && vargs[0].represe… in representsReal() argument
75 bool DoubleFactorialFunction::representsNonComplex(const MathStructure &vargs, bool) const {return … in representsNonComplex() argument
77 …sentsNonZero(const MathStructure &vargs, bool) const {return vargs.size() == 1 && vargs[0].represe… in representsNonZero() argument
86 int MultiFactorialFunction::calculate(MathStructure &mstruct, const MathStructure &vargs, const Eva… in calculate() argument
89 …&vargs, bool) const {return vargs.size() == 2 && vargs[1].representsInteger() && vargs[1].represen… in representsPositive() argument
91 …&vargs, bool) const {return vargs.size() == 2 && vargs[1].representsInteger() && vargs[1].represen… in representsNonNegative() argument
93 …&vargs, bool) const {return vargs.size() == 2 && vargs[1].representsInteger() && vargs[1].represen… in representsInteger() argument
94 …&vargs, bool) const {return vargs.size() == 2 && vargs[1].representsInteger() && vargs[1].represen… in representsNumber() argument
95 bool MultiFactorialFunction::representsNonComplex(const MathStructure &vargs, bool) const {return t… in representsNonComplex() argument
96 …&vargs, bool) const {return vargs.size() == 2 && vargs[1].representsInteger() && vargs[1].represen… in representsRational() argument
97 …&vargs, bool) const {return vargs.size() == 2 && vargs[1].representsInteger() && vargs[1].represen… in representsReal() argument
99 …&vargs, bool) const {return vargs.size() == 2 && vargs[1].representsInteger() && vargs[1].represen… in representsNonZero() argument
108 int BinomialFunction::calculate(MathStructure &mstruct, const MathStructure &vargs, const Evaluatio… in calculate() argument
110 if(!nr.binomial(vargs[0].number(), vargs[1].number())) return 0; in calculate()