Skip to content

Commit

Permalink
Compile code with native flag, giving a speed improvement.
Browse files Browse the repository at this point in the history
  • Loading branch information
Andreas Pauley committed Mar 26, 2011
1 parent c33e19e commit b7ce2ab
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions sudoku
Expand Up @@ -2,8 +2,8 @@
-import(sudoku, [print_results/2]).

main(Args) ->
{ok, sudoku} = compile:file(sudoku),
{ok, unittests} = compile:file(unittests),
{ok, sudoku} = compile:file(sudoku, [native]),
{ok, unittests} = compile:file(unittests, [native]),
run_solver(Args).

run_solver([]) ->
Expand Down

0 comments on commit b7ce2ab

Please sign in to comment.