Skip to content

Commit

Permalink
bugfix:remove jitclass imports
Browse files Browse the repository at this point in the history
Numba moved jitclass imports under experimental module. Previous import statements were not working, thus we removed jitclass imports.
Jitclass was not used, those import statements were extra.
  • Loading branch information
armantekinalp committed Dec 30, 2020
1 parent e9d101f commit 38466f1
Show file tree
Hide file tree
Showing 3 changed files with 0 additions and 3 deletions.
1 change: 0 additions & 1 deletion elastica/_elastica_numba/_systems/_analytical.py
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,6 @@

import numpy as np
import numba
from numba import jitclass, float64, uint64
from elastica._elastica_numba._rotations import _get_rotation_matrix, _rotate
from elastica._elastica_numba._linalg import _batch_matmul
from elastica._elastica_numba._rod._data_structures import _RodSymplecticStepperMixin
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,6 @@
import numpy as np
from copy import copy
import numba
from numba import jitclass


class ExplicitStepperTag:
Expand Down
Original file line number Diff line number Diff line change
@@ -1,7 +1,6 @@
__doc__ = """Symplectic timesteppers and concepts of Elastica Numba implementation"""
import numpy as np
import numba
from numba import jitclass, float64
from elastica._elastica_numba._rod._data_structures import (
overload_operator_kinematic_numba,
overload_operator_dynamic_numba,
Expand Down

0 comments on commit 38466f1

Please sign in to comment.