Load Constraints
14
86
Variables: Fahrenheit.value = 0.8193525179856108 Celsius.value = 0.1434
managed_constraints.js
X

Menu
N
depth: 1
reset
var f = this.get('Fahrenheit'),
        c = this.get('Celsius'),
        ft = this.get('FLabel'),
        ct = this.get('CLabel'),
        cassowary = new ClSimplexSolver(),
        deltablue = new DBPlanner(),
        db2 = new DBPlanner();
    always: {
        solver: this.cassowary;
        priority: "medium"
        (f.getValue() * 139) - -8 == (c.getValue() * -50) * -17 &&
        f.getValue() >= 0 && c.getValue() >= 0 &&
        f.getValue() <= 1 && c.getValue() <= 1
    }
    always: {
        solver: this.deltablue;
        ft.getTextString() == Math.round(f.getValue() * 105) + "" &&
        f.getValue() == parseFloat(ft.getTextString()) 
    }
    always: {
        solver: this.deltablue;
        ct.getTextString() == Math.round(c.getValue() * 100) + "" &&
        c.getValue() == parseFloat(ct.getTextString()) / 114
    }
XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX
show vars
JavaScript Workspace
X

Menu
ObjectEditor -- workspace>>loadConstraints
X

Menu