linny-r 2.1.3 → 2.1.4

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "linny-r",
3
- "version": "2.1.3",
3
+ "version": "2.1.4",
4
4
  "description": "Executable graphical language with WYSIWYG editor for MILP models",
5
5
  "main": "server.js",
6
6
  "scripts": {
@@ -1397,18 +1397,22 @@ td.a-weight {
1397
1397
  }
1398
1398
 
1399
1399
  td.import,
1400
- td.export {
1400
+ td.export,
1401
+ div.import,
1402
+ div.export {
1401
1403
  font-weight: 600;
1402
1404
  text-decoration-line: underline;
1403
1405
  text-decoration-style: dotted;
1404
1406
  }
1405
1407
 
1406
- td.import {
1408
+ td.import,
1409
+ div.import {
1407
1410
  color: #b00000;
1408
1411
  }
1409
1412
 
1410
- td.export {
1411
- color: #00000b;
1413
+ td.export,
1414
+ div.export {
1415
+ color: #0000b0;
1412
1416
  }
1413
1417
 
1414
1418
  /* styles for the SERVER dialog */
@@ -7706,7 +7706,7 @@ function VMI_sub(x) {
7706
7706
  } else if(d[0] === VM.MINUS_INFINITY || d[1] === VM.PLUS_INFINITY) {
7707
7707
  x.retop(VM.MINUS_INFINITY);
7708
7708
  } else {
7709
- x.retop(d[0] + d[1]);
7709
+ x.retop(d[0] - d[1]);
7710
7710
  }
7711
7711
  }
7712
7712
  }