Commit 5d9297d1 authored by Grand Francois's avatar Grand Francois
Browse files

#46 correction d'un bug dans Nub.CalcSerie() où this._result n'était pas...

 #46 correction d'un bug dans Nub.CalcSerie() où this._result n'était pas affecté dans le cas d'un paramètre fixe.
Showing with 1 addition and 1 deletion
+1 -1
......@@ -108,7 +108,7 @@ export abstract class Nub extends ComputeNode {
rInit = computedParam.v;
if (variatedParam == undefined)
this.Calc(computedSymbol, rInit, rPrec); // résultat dans this._result
this._result = this.Calc(computedSymbol, rInit, rPrec); // résultat dans this._result
else {
const res = new Result();
variatedParam.paramValues.initIterator();
......
Supports Markdown
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment