filter auxiliary constraints

This commit is contained in:
Val Erastov 2015-02-09 22:13:42 -08:00
parent b237610249
commit 31b696c3f4

View file

@ -227,7 +227,9 @@
var theItems = [];
for (var i = 0; i < pm.system.length; ++i) {
var constr = pm.system[i];
theItems.push({name : constr.NAME, constr : constr});
if (constr.aux !== true) {
theItems.push({name : constr.NAME, constr : constr});
}
}
return theItems;
},