Skip to content

Commit

Permalink
Fix: tracker added to fix documentation build
Browse files Browse the repository at this point in the history
  • Loading branch information
Caparrini committed Mar 8, 2024
1 parent 52b500a commit f167fb0
Show file tree
Hide file tree
Showing 2 changed files with 8 additions and 8 deletions.
8 changes: 4 additions & 4 deletions examples/plot_evolution.py
Original file line number Diff line number Diff line change
Expand Up @@ -46,13 +46,13 @@

# %%
# At the end of the evolution the graph is saved as an html at the path:
print(opt.graphics_path)
print(os.listdir(opt.graphics_path))
print(opt.tracker.graphics_path)
print(os.listdir(opt.tracker.graphics_path))


# %%
# The data to generate the graph is available at the path:
print(opt.results_path)
print(os.listdir(opt.results_path))
print(opt.tracker.results_path)
print(os.listdir(opt.tracker.results_path))

del opt
8 changes: 4 additions & 4 deletions examples/plot_search_space.py
Original file line number Diff line number Diff line change
Expand Up @@ -46,13 +46,13 @@

# %%
# At the end of the evolution the graph is saved as an html at the path:
print(opt.graphics_path)
print(os.listdir(opt.graphics_path))
print(opt.tracker.graphics_path)
print(os.listdir(opt.tracker.graphics_path))


# %%
# The data to generate the graph is available at the path:
print(opt.results_path)
print(os.listdir(opt.results_path))
print(opt.tracker.results_path)
print(os.listdir(opt.tracker.results_path))

del opt

0 comments on commit f167fb0

Please sign in to comment.