Skip to content

Commit

Permalink
..
Browse files Browse the repository at this point in the history
  • Loading branch information
dweindl committed Nov 22, 2023
1 parent 55a706e commit ccf455b
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion python/tests/splines_utils.py
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@
import petab
import sympy as sp
from amici.gradient_check import _check_results
from amici.petab_import import import_petab_problem
from amici.petab.petab_import import import_petab_problem
from amici.petab_objective import EDATAS, LLH, RDATAS, SLLH, simulate_petab
from amici.sbml_utils import (
add_compartment,
Expand Down
4 changes: 2 additions & 2 deletions tests/benchmark-models/test_petab_benchmark.py
Original file line number Diff line number Diff line change
Expand Up @@ -3,12 +3,12 @@
from pathlib import Path

import amici
import amici.petab_import
import amici.petab_objective
import numpy as np
import pandas as pd
import petab
import pytest
from amici.petab.petab_import import import_petab_problem
from fiddy import MethodId, get_derivative
from fiddy.derivative_check import NumpyIsCloseDerivativeCheck
from fiddy.extensions.amici import simulate_petab_to_cached_functions
Expand Down Expand Up @@ -81,7 +81,7 @@ def test_benchmark_gradient(model, scale):
parameter_ids = list(parameter_df_free.index)

# Setup AMICI objects.
amici_model = amici.petab_import.import_petab_problem(
amici_model = import_petab_problem(
petab_problem,
model_output_dir=benchmark_outdir / model,
)
Expand Down

0 comments on commit ccf455b

Please sign in to comment.