From 572f2fef124c7e62afb917ef9c596a22724da077 Mon Sep 17 00:00:00 2001 From: Adhitya Kamakshidasan Date: Thu, 28 Jul 2016 21:53:13 +0530 Subject: Support for Maven added --- data_structures_correct/Modulo_Count.js | 46 --------------------------------- 1 file changed, 46 deletions(-) delete mode 100644 data_structures_correct/Modulo_Count.js (limited to 'data_structures_correct/Modulo_Count.js') diff --git a/data_structures_correct/Modulo_Count.js b/data_structures_correct/Modulo_Count.js deleted file mode 100644 index dfff095..0000000 --- a/data_structures_correct/Modulo_Count.js +++ /dev/null @@ -1,46 +0,0 @@ -function Modulo_Count() { - - Modulo_Count.prototype.define = function Modulo_Count() { - this.ini_c = 0; - this.base = 3; - - var model = scicos_model(); - model.sim = list(new ScilabString(["modulo_count"]), new ScilabDouble([4])); - model.evtin = new ScilabDouble([1]); - model.out = new ScilabDouble([1]); - model.dstate = new ScilabDouble([this.ini_c]); - model.ipar = new ScilabDouble([this.base]); - model.blocktype = new ScilabString(["c"]); - model.dep_ut = new ScilabBoolean([false, false]); - - var exprs = new ScilabString([this.ini_c], [this.base]); - - var gr_i = new ScilabString(["xstringb(orig(1),orig(2),\"Modulo_Count\",sz(1),sz(2));"]); - this.x = new standard_define(new ScilabDouble([3, 2]), model, exprs, gr_i); - return new BasicBlock(this.x); - } - Modulo_Count.prototype.internal = function Modulo_Count() { - this.ini_c = 0; - this.base = 3; - - var model = scicos_model(); - model.sim = list(new ScilabString(["modulo_count"]), new ScilabDouble([4])); - model.evtin = new ScilabDouble([1]); - model.out = new ScilabDouble([1]); - model.out2 = new ScilabDouble([1]); - model.dstate = new ScilabDouble([this.ini_c]); - model.ipar = new ScilabDouble([this.base]); - model.blocktype = new ScilabString(["c"]); - model.dep_ut = new ScilabBoolean([false, false]); - - var exprs = new ScilabString([this.ini_c], [this.base]); - - var gr_i = new ScilabString(["xstringb(orig(1),orig(2),\"Modulo_Count\",sz(1),sz(2));"]); - var block = new standard_define(new ScilabDouble([3, 2]), model, exprs, gr_i); - block.graphics.style = new ScilabString(["Modulo_Count"]); - return block; - } - Modulo_Count.prototype.details = function Modulo_Count() { - return this.x; - } -} -- cgit