Lines Matching refs:BinaryConstraint
341 function BinaryConstraint(var1, var2, strength) {
342 BinaryConstraint.superConstructor.call(this, strength);
349 BinaryConstraint.inheritsFrom(Constraint);
356 BinaryConstraint.prototype.chooseMethod = function (mark) {
381 BinaryConstraint.prototype.addToGraph = function () {
390 BinaryConstraint.prototype.isSatisfied = function () {
397 BinaryConstraint.prototype.markInputs = function (mark) {
404 BinaryConstraint.prototype.input = function () {
411 BinaryConstraint.prototype.output = function () {
420 BinaryConstraint.prototype.recalculate = function () {
430 BinaryConstraint.prototype.markUnsatisfied = function () {
434 BinaryConstraint.prototype.inputsKnown = function (mark) {
439 BinaryConstraint.prototype.removeFromGraph = function () {
462 ScaleConstraint.inheritsFrom(BinaryConstraint);
518 EqualityConstraint.inheritsFrom(BinaryConstraint);