Skip to content

Commit

Permalink
Remove caching example, have first ticking example tick at different …
Browse files Browse the repository at this point in the history
…times

Signed-off-by: Tim Paine <3105306+timkpaine@users.noreply.github.com>
  • Loading branch information
timkpaine committed Apr 16, 2024
1 parent 01f6633 commit 5c1ef8a
Show file tree
Hide file tree
Showing 3 changed files with 1 addition and 259 deletions.
2 changes: 1 addition & 1 deletion examples/01_basics/e2_ticking.py
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@ def my_graph():
x = csp.curve(int, [(st + timedelta(1), 1), (st + timedelta(2), 2), (st + timedelta(3), 3)])

# Dummy y values
y = csp.curve(int, [(st + timedelta(1), -1), (st + timedelta(2), -1), (st + timedelta(3), -1)])
y = csp.curve(int, [(st + timedelta(1), -1), (st + timedelta(3), -1), (st + timedelta(4), -1)])

# Add the time series
sum = add(x, y)
Expand Down
1 change: 0 additions & 1 deletion examples/06_advanced/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,4 +2,3 @@

- [Dynamic Graphs](./e1_dynamic.py)
- [Pandas Extension](./e2_pandas_extension_example.py)
- [Caching](./e3_caching_example.py)
257 changes: 0 additions & 257 deletions examples/06_advanced/e3_caching.py

This file was deleted.

0 comments on commit 5c1ef8a

Please sign in to comment.