var f = this.get('Fahrenheit'),
c = this.get('Celsius'),
ft = this.get('FLabel'),
ct = this.get('CLabel');
always: {
solver: this.cassowary;
priority: "strong"
(f.getValue() * 100) - 32 == (c.getValue() * 100) * 18 &&
f.getValue() >= 0 && c.getValue() >= 0 &&
f.getValue() <= 1 && c.getValue() <= 1
}
always: {
solver: this.deltablue;
ft.getTextString() == Math.round(f.getValue() * 100) + "" &&
f.getValue() == parseFloat(ft.getTextString()) / 100
}
always: {
solver: this.deltablue;
ct.getTextString() == Math.round(c.getValue() * 1000) + "" &&
c.getValue() == parseFloat(ct.getTextString()) / 1000
}