summaryrefslogtreecommitdiff
path: root/data_structures_correct/CLINDUMMY_f.js
diff options
context:
space:
mode:
authorAdhitya Kamakshidasan2016-06-23 17:22:53 +0530
committerGitHub2016-06-23 17:22:53 +0530
commit6e08c4164c3a7c68aeeaad32450573f99c35cde2 (patch)
tree3c487b4e6ce202f7f799882c2ec0ed2b0e1ab4af /data_structures_correct/CLINDUMMY_f.js
parent68e83b1fdc6d6424096e729f4e31d7e24b2d2b39 (diff)
parentfa454f066ef830b14e4c22f03451a18f06ff25e1 (diff)
downloadxcos-on-web-6e08c4164c3a7c68aeeaad32450573f99c35cde2.tar.gz
xcos-on-web-6e08c4164c3a7c68aeeaad32450573f99c35cde2.tar.bz2
xcos-on-web-6e08c4164c3a7c68aeeaad32450573f99c35cde2.zip
Merge pull request #65 from ASP1234/master
Implement CLINDUMMY_f Block
Diffstat (limited to 'data_structures_correct/CLINDUMMY_f.js')
-rw-r--r--data_structures_correct/CLINDUMMY_f.js20
1 files changed, 20 insertions, 0 deletions
diff --git a/data_structures_correct/CLINDUMMY_f.js b/data_structures_correct/CLINDUMMY_f.js
new file mode 100644
index 0000000..7167f84
--- /dev/null
+++ b/data_structures_correct/CLINDUMMY_f.js
@@ -0,0 +1,20 @@
+function CLINDUMMY_f() {
+
+ CLINDUMMY_f.prototype.define = function CLINDUMMY_f() {
+ this.x0 = 0;
+
+ var model = scicos_model();
+ model.sim = list(new ScilabString(["cdummy"]), new ScilabDouble([4]));
+ model.state = new ScilabDouble([this.x0]);
+ model.blocktype = new ScilabString(["c"]);
+ model.firing = new ScilabDouble();
+ model.dep_ut = new ScilabBoolean([false, true]);
+
+ var gr_i = new ScilabString(["xstringb(orig(1),orig(2),\"CLINDUMMY_f\",sz(1),sz(2));"]);
+ this.x = new standard_define(new ScilabDouble([3, 2]), model, new ScilabDouble(), gr_i);
+ return new BasicBlock(this.x);
+ }
+ CLINDUMMY_f.prototype.details = function CLINDUMMY_f() {
+ return this.x;
+ }
+}