From 0a3788d46553caffc5240d6010e5a8e1703c5aaf Mon Sep 17 00:00:00 2001 From: AMIT KUMAR YADAV Date: Tue, 21 Jun 2016 11:43:19 +0530 Subject: Fixed some edge cases --- data_structures/EDGE_TRIGGER.js | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) (limited to 'data_structures/EDGE_TRIGGER.js') diff --git a/data_structures/EDGE_TRIGGER.js b/data_structures/EDGE_TRIGGER.js index 5125194..0ca790b 100644 --- a/data_structures/EDGE_TRIGGER.js +++ b/data_structures/EDGE_TRIGGER.js @@ -77,10 +77,11 @@ function EDGE_TRIGGER () { clear blk lnk model=scicos_model(); model.sim = new ScilabString(["csuper"]); - model.in = new ScilabDouble([1]); + model.in1 = new ScilabDouble([1]); model.evtout = new ScilabDouble([1]); model.rpar=scs_m_1; var gr_i = []; this.x=new standard_define(new ScilabDouble([3,2]),model,[],gr_i); + return new BasicBlock(this.x) } -- cgit