Commit b8bcd62e authored by Chinmay Garde's avatar Chinmay Garde Committed by GitHub

Remove counters used to tag variables and symbols in the solver for debugging purposes. (#4780)

parent 77cd8ee4
...@@ -11,12 +11,8 @@ import 'term.dart'; ...@@ -11,12 +11,8 @@ import 'term.dart';
/// is interested in watching updates to the value of this indeterminate, /// is interested in watching updates to the value of this indeterminate,
/// it can assign a watcher as the `owner`. /// it can assign a watcher as the `owner`.
class Variable { class Variable {
static int _total = 0;
/// Creates a new [Variable] with the given constant value. /// Creates a new [Variable] with the given constant value.
Variable(this.value) : _tick = _total++; Variable(this.value);
final int _tick;
/// The current value of the variable. /// The current value of the variable.
double value; double value;
...@@ -41,13 +37,6 @@ class Variable { ...@@ -41,13 +37,6 @@ class Variable {
value = updated; value = updated;
return res; return res;
} }
/// The name used for this [Variable] when debugging the internal state of the
/// solver.
String get debugName => name ?? 'variable$_tick';
@override
String toString() => debugName;
} }
/// A [Param] wraps a [Variable] and makes it suitable to be used in an /// A [Param] wraps a [Variable] and makes it suitable to be used in an
......
...@@ -14,32 +14,9 @@ import 'term.dart'; ...@@ -14,32 +14,9 @@ import 'term.dart';
enum _SymbolType { invalid, external, slack, error, dummy, } enum _SymbolType { invalid, external, slack, error, dummy, }
class _Symbol { class _Symbol {
const _Symbol(this.type, this.tick); const _Symbol(this.type);
final _SymbolType type;
final int tick;
@override final _SymbolType type;
String toString() {
String typeString = 'unknown';
switch (type) {
case _SymbolType.invalid:
typeString = 'i';
break;
case _SymbolType.external:
typeString = 'v';
break;
case _SymbolType.slack:
typeString = 's';
break;
case _SymbolType.error:
typeString = 'e';
break;
case _SymbolType.dummy:
typeString = 'd';
break;
}
return '$typeString$tick';
}
} }
class _Tag { class _Tag {
...@@ -156,11 +133,8 @@ class Solver { ...@@ -156,11 +133,8 @@ class Solver {
final Map<Variable, _EditInfo> _edits = new Map<Variable, _EditInfo>(); final Map<Variable, _EditInfo> _edits = new Map<Variable, _EditInfo>();
final List<_Symbol> _infeasibleRows = new List<_Symbol>(); final List<_Symbol> _infeasibleRows = new List<_Symbol>();
final _Row _objective = new _Row(0.0); final _Row _objective = new _Row(0.0);
_Row _artificial = new _Row(0.0);
/// A monotonically increasing value that indicates how many times the solver _Row _artificial = new _Row(0.0);
/// has iterated.
int tick = 1;
/// Attempts to add the constraints in the list to the solver. If it cannot /// Attempts to add the constraints in the list to the solver. If it cannot
/// add any for some reason, a cleanup is attempted so that either all /// add any for some reason, a cleanup is attempted so that either all
...@@ -204,8 +178,8 @@ class Solver { ...@@ -204,8 +178,8 @@ class Solver {
if (_constraints.containsKey(constraint)) if (_constraints.containsKey(constraint))
return Result.duplicateConstraint; return Result.duplicateConstraint;
_Tag tag = new _Tag(new _Symbol(_SymbolType.invalid, 0), _Tag tag = new _Tag(new _Symbol(_SymbolType.invalid),
new _Symbol(_SymbolType.invalid, 0)); new _Symbol(_SymbolType.invalid));
_Row row = _createRow(constraint, tag); _Row row = _createRow(constraint, tag);
...@@ -512,7 +486,7 @@ class Solver { ...@@ -512,7 +486,7 @@ class Solver {
if (symbol != null) if (symbol != null)
return symbol; return symbol;
symbol = new _Symbol(_SymbolType.external, tick++); symbol = new _Symbol(_SymbolType.external);
_vars[variable] = symbol; _vars[variable] = symbol;
return symbol; return symbol;
...@@ -543,12 +517,12 @@ class Solver { ...@@ -543,12 +517,12 @@ class Solver {
double coefficient = double coefficient =
constraint.relation == Relation.lessThanOrEqualTo ? 1.0 : -1.0; constraint.relation == Relation.lessThanOrEqualTo ? 1.0 : -1.0;
_Symbol slack = new _Symbol(_SymbolType.slack, tick++); _Symbol slack = new _Symbol(_SymbolType.slack);
tag.marker = slack; tag.marker = slack;
row.insertSymbol(slack, coefficient); row.insertSymbol(slack, coefficient);
if (constraint.priority < Priority.required) { if (constraint.priority < Priority.required) {
_Symbol error = new _Symbol(_SymbolType.error, tick++); _Symbol error = new _Symbol(_SymbolType.error);
tag.other = error; tag.other = error;
row.insertSymbol(error, -coefficient); row.insertSymbol(error, -coefficient);
_objective.insertSymbol(error, constraint.priority); _objective.insertSymbol(error, constraint.priority);
...@@ -557,8 +531,8 @@ class Solver { ...@@ -557,8 +531,8 @@ class Solver {
break; break;
case Relation.equalTo: case Relation.equalTo:
if (constraint.priority < Priority.required) { if (constraint.priority < Priority.required) {
_Symbol errPlus = new _Symbol(_SymbolType.error, tick++); _Symbol errPlus = new _Symbol(_SymbolType.error);
_Symbol errMinus = new _Symbol(_SymbolType.error, tick++); _Symbol errMinus = new _Symbol(_SymbolType.error);
tag.marker = errPlus; tag.marker = errPlus;
tag.other = errMinus; tag.other = errMinus;
row.insertSymbol(errPlus, -1.0); row.insertSymbol(errPlus, -1.0);
...@@ -566,7 +540,7 @@ class Solver { ...@@ -566,7 +540,7 @@ class Solver {
_objective.insertSymbol(errPlus, constraint.priority); _objective.insertSymbol(errPlus, constraint.priority);
_objective.insertSymbol(errMinus, constraint.priority); _objective.insertSymbol(errMinus, constraint.priority);
} else { } else {
_Symbol dummy = new _Symbol(_SymbolType.dummy, tick++); _Symbol dummy = new _Symbol(_SymbolType.dummy);
tag.marker = dummy; tag.marker = dummy;
row.insertSymbol(dummy); row.insertSymbol(dummy);
} }
...@@ -598,7 +572,7 @@ class Solver { ...@@ -598,7 +572,7 @@ class Solver {
return tag.other; return tag.other;
} }
return new _Symbol(_SymbolType.invalid, 0); return new _Symbol(_SymbolType.invalid);
} }
bool _allDummiesInRow(_Row row) { bool _allDummiesInRow(_Row row) {
...@@ -610,7 +584,7 @@ class Solver { ...@@ -610,7 +584,7 @@ class Solver {
} }
bool _addWithArtificialVariableOnRow(_Row row) { bool _addWithArtificialVariableOnRow(_Row row) {
_Symbol artificial = new _Symbol(_SymbolType.slack, tick++); _Symbol artificial = new _Symbol(_SymbolType.slack);
_rows[artificial] = new _Row.fromRow(row); _rows[artificial] = new _Row.fromRow(row);
_artificial = new _Row.fromRow(row); _artificial = new _Row.fromRow(row);
...@@ -669,7 +643,7 @@ class Solver { ...@@ -669,7 +643,7 @@ class Solver {
return symbol; return symbol;
} }
return new _Symbol(_SymbolType.invalid, 0); return new _Symbol(_SymbolType.invalid);
} }
_Symbol _leavingSymbolForEnteringSymbol(_Symbol entering) { _Symbol _leavingSymbolForEnteringSymbol(_Symbol entering) {
...@@ -709,7 +683,7 @@ class Solver { ...@@ -709,7 +683,7 @@ class Solver {
return symbol; return symbol;
} }
} }
return new _Symbol(_SymbolType.invalid, 0); return new _Symbol(_SymbolType.invalid);
} }
void _removeConstraintEffects(Constraint cn, _Tag tag) { void _removeConstraintEffects(Constraint cn, _Tag tag) {
...@@ -838,7 +812,7 @@ class Solver { ...@@ -838,7 +812,7 @@ class Solver {
} }
} }
return entering ?? new _Symbol(_SymbolType.invalid, 0); return entering ?? new _Symbol(_SymbolType.invalid);
} }
@override @override
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment