diff options
Diffstat (limited to 'data_structures/GotoTagVisibilityMO.js')
-rw-r--r-- | data_structures/GotoTagVisibilityMO.js | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/data_structures/GotoTagVisibilityMO.js b/data_structures/GotoTagVisibilityMO.js index 125bb29..8ede428 100644 --- a/data_structures/GotoTagVisibilityMO.js +++ b/data_structures/GotoTagVisibilityMO.js @@ -3,7 +3,7 @@ function GotoTagVisibilityMO () { var model = scicos_model(); model.sim = new ScilabString(["gototagvisibilitymo"]); - model.in = new ScilabDouble(); + model.in1 = new ScilabDouble(); model.in2 = new ScilabDouble(); model.out = new ScilabDouble(); model.out2 = new ScilabDouble(); @@ -19,4 +19,5 @@ function GotoTagVisibilityMO () { var gr_i = []; this.x=new standard_define(new ScilabDouble([2,2]),model,exprs,gr_i); + return new BasicBlock(this.x) } |