Commit 17bfb663 authored by Mathias Chouet's avatar Mathias Chouet :spaghetti:
Browse files

Made "Pr" invisible, related to nghyd#209

Showing with 3 additions and 1 deletion
+3 -1
...@@ -104,7 +104,9 @@ export abstract class ParamsEquation implements Iterable<ParamDefinition> { ...@@ -104,7 +104,9 @@ export abstract class ParamsEquation implements Iterable<ParamDefinition> {
public constructor(parent?: ComputeNode) { public constructor(parent?: ComputeNode) {
this.parent = parent; this.parent = parent;
this._calculabilityDefined = false; this._calculabilityDefined = false;
this._Pr = new ParamDefinition(this, "Pr", ParamDomainValue.POS, ParamsEquation.DEFAULT_COMPUTE_PREC); this._Pr = new ParamDefinition(
this, "Pr", ParamDomainValue.POS, ParamsEquation.DEFAULT_COMPUTE_PREC, undefined, false
);
this.addParamDefinition(this._Pr); this.addParamDefinition(this._Pr);
} }
......
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