demathpy 0.0.1__py3-none-any.whl → 0.1.0__py3-none-any.whl

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
demathpy/__init__.py CHANGED
@@ -2,32 +2,22 @@
2
2
 
3
3
  from .symbols import normalize_symbols, normalize_lhs
4
4
  from .pde import (
5
+ PDE,
5
6
  normalize_pde,
6
7
  init_grid,
7
- sample_gradient,
8
8
  parse_pde,
9
- evaluate_rhs,
10
- evaluate_scalar,
11
9
  step_pdes,
12
- evaluate_rhs_compiled,
13
- evaluate_scalar_compiled,
14
- step_compiled_pdes,
15
10
  )
16
11
  from .ode import robust_parse, parse_odes_to_function
17
12
 
18
13
  __all__ = [
14
+ "PDE",
19
15
  "normalize_symbols",
20
16
  "normalize_lhs",
21
17
  "normalize_pde",
22
18
  "init_grid",
23
- "sample_gradient",
24
19
  "parse_pde",
25
- "evaluate_rhs",
26
- "evaluate_scalar",
27
20
  "step_pdes",
28
- "evaluate_rhs_compiled",
29
- "evaluate_scalar_compiled",
30
- "step_compiled_pdes",
31
21
  "robust_parse",
32
22
  "parse_odes_to_function",
33
23
  ]