Skip to content

Commit

Permalink
Slightly refactored application test case (evaluate, get_result).
Browse files Browse the repository at this point in the history
  • Loading branch information
johnbywater committed Sep 13, 2017
1 parent d30860f commit fe9ce49
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions README.md
Expand Up @@ -169,12 +169,12 @@ market_simulation = app.simulate(
Make an evaluation using the simulation.

```python
evaluation = app.evaluate(dependency_graph, market_simulation)
valuation = app.evaluate(dependency_graph, market_simulation)
```

Inspect the estimated value.

```python
estimated_value = evaluation.result_value.mean()
estimated_value = app.get_result(valuation).result_value.mean()
assert 17 < estimated_value < 18, estimated_value
```

0 comments on commit fe9ce49

Please sign in to comment.