Skip to content

Commit

Permalink
Remove debug calls
Browse files Browse the repository at this point in the history
  • Loading branch information
bzurkowski committed Mar 15, 2017
1 parent 209a574 commit 8d3b4ac
Showing 1 changed file with 3 additions and 6 deletions.
9 changes: 3 additions & 6 deletions src/mas_test_simulation.erl
Original file line number Diff line number Diff line change
Expand Up @@ -6,12 +6,9 @@
simulation_teardown/1,
simulation_result/2]).

simulation_setup(_SP) ->
io:format("Simulation setup~n").
simulation_setup(_SP) -> ok.

simulation_teardown(_SP) ->
io:format("Simulation teardown~n").
simulation_teardown(_SP) -> ok.

simulation_result(_SP, Agents) ->
io:format("Number of results:~p~n", [length(Agents)]),
Agents.
{Agents, length(Agents)}.

0 comments on commit 8d3b4ac

Please sign in to comment.