Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

🧹 Remove Problem class usage since it isn't part of the official API #48

Merged
merged 1 commit into from
Oct 14, 2021
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,6 @@

import matplotlib.pyplot as plt
from glotaran.analysis.optimize import optimize
from glotaran.analysis.problem import Problem
from glotaran.io import load_dataset
from glotaran.io import load_model
from glotaran.io import load_parameters
Expand Down Expand Up @@ -55,10 +54,6 @@

print(model.validate(parameters=parameter))

# The problem is constructed automatically from the scheme by the optimize call,
# but can also be created manually for debug purposes:
test_problem = Problem(scheme)

# %%
start = timer()
# Warning: this may take a while (several seconds per iteration)
Expand Down