From 7c70459c10aed0d74ee03896abaf47fefdbf7c8f Mon Sep 17 00:00:00 2001
From: Sunil Shetye
Date: Mon, 25 Jun 2018 12:08:56 +0530
Subject: separate out code for getvalue

---
 js/Linear/DERIV.js | 20 ++++++++++----------
 1 file changed, 10 insertions(+), 10 deletions(-)

(limited to 'js/Linear/DERIV.js')

diff --git a/js/Linear/DERIV.js b/js/Linear/DERIV.js
index acec98d0..a3b0b8dc 100644
--- a/js/Linear/DERIV.js
+++ b/js/Linear/DERIV.js
@@ -1,21 +1,21 @@
 /* autogenerated from "macros/Linear/DERIV.sci" */
 function DERIV() {
     DERIV.prototype.define = function DERIV() {
-model=scicos_model();
-model.sim=list("deriv",4);
-model.in1=-1;
-model.out=-1;
-model.blocktype="x";
-model.dep_ut=[true,false];
-exprs=[];
-gr_i=[];
-x=standard_define([2,2],model,exprs,gr_i);
+        model = scicos_model();
+        model.sim = list("deriv",4);
+        model.in1 = -1;
+        model.out = -1;
+        model.blocktype = "x";
+        model.dep_ut = [true,false];
+        exprs = [];
+        gr_i = [];
+        x = standard_define([2,2],model,exprs,gr_i);
     }
     DERIV.prototype.details = function DERIV() {
     }
     DERIV.prototype.get = function DERIV() {
     }
     DERIV.prototype.set = function DERIV() {
-x=arg1;
+        x = arg1;
     }
 }
-- 
cgit