Skip to content

Commit

Permalink
fix: use internal imports for now to simplify conda deps
Browse files Browse the repository at this point in the history
  • Loading branch information
CallumJHays committed Jul 2, 2023
1 parent 77a7e0b commit a68f333
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions mathpad/simulate_dynamic_system.py
Original file line number Diff line number Diff line change
Expand Up @@ -8,14 +8,11 @@
import plotly.graph_objects as go
from sympy.utilities.lambdify import lambdify
from scipy.integrate import RK45
from IPython.display import display
import plotly.io as pio

from mathpad.core.val import Val
from mathpad.core.equation import Equation
from mathpad.maths.algebra import subs, SubstitutionMap, simplify
from mathpad.core.common_vals import t
from tqdm import tqdm


def simulate_dynamic_system(
Expand All @@ -40,6 +37,9 @@ def simulate_dynamic_system(
_NEW_SOLVE: bool = False # TODO: fix this properly
) -> List[Tuple[float, List[float]]]:
"simulates a differential system specified by dynamics_equations from initial conditions at x_axis=0 (typically t=0) to x_final"
from IPython.display import display
import plotly.io as pio
from tqdm import tqdm

verbose = verbose or explain

Expand Down

0 comments on commit a68f333

Please sign in to comment.