diff options
| author | Zancanaro; Carlo <czan8762@plang3.cs.usyd.edu.au> | 2012-11-01 18:06:13 +1100 | 
|---|---|---|
| committer | Zancanaro; Carlo <czan8762@plang3.cs.usyd.edu.au> | 2012-11-01 18:06:13 +1100 | 
| commit | b7eaa99578037789a337c5061c0ea8ee3150b63c (patch) | |
| tree | e63a023a85ef167760f55229c1d96fbcaaa1c64e /impl/main.cpp | |
| parent | e207a8fec1bae01068bdb3a27a2090a4af5f8cb2 (diff) | |
A bunch of fixes to the solver, and moving it in to clang.
Also some contribution writing stuff.
Basically: lots of work.
Diffstat (limited to 'impl/main.cpp')
| -rw-r--r-- | impl/main.cpp | 3 | 
1 files changed, 1 insertions, 2 deletions
| diff --git a/impl/main.cpp b/impl/main.cpp index 1fed389..be9cc82 100644 --- a/impl/main.cpp +++ b/impl/main.cpp @@ -159,8 +159,7 @@ int main (int argc, char* argv[]) {      }    } else {      for (unsigned int i = 0, size = system.variableCount(); i < size; ++i) { -      Variable<ZBar>& var = system.variable(i); -      solver.solve(var); +      solver.solve(system.variable(i));      }    }    clock_gettime(CLOCK_PROCESS_CPUTIME_ID, &finish); | 
