Skip to content

Commit 3afce7c

Browse files
committed
update nonlinear block
1 parent f5e599c commit 3afce7c

File tree

4 files changed

+7
-6
lines changed

4 files changed

+7
-6
lines changed

intvalpy/kernel/elementary_functions.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
import numpy as np
22

33
from .preprocessing import asinterval
4-
from.real_intervals import Interval, ARITHMETICS
4+
from .real_intervals import Interval, ARITHMETICS
55

66

77
def sqrt(x):

intvalpy/nonlinear/__init__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
# from .external_evaluation import HansenSengupta, Krawczyk
1+
from .external_evaluation import HansenSengupta, Krawczyk
22
from .globopt import globopt
33
# from .solution_existence import miranda
44
# from .recognizing_functional import Tol, Uni

intvalpy/nonlinear/external_evaluation.py

Lines changed: 4 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,9 @@
11
import numpy as np
22

3-
from intvalpy.linear import Gauss_Seidel, PSS
4-
from intvalpy.utils import asinterval, intersection, dist, infinity, isnan
5-
from intvalpy.RealInterval import ARITHMETICS
3+
from ..linear.Gauss_Seidel import Gauss_Seidel
4+
from ..kernel.preprocessing import asinterval, intersection
5+
from ..kernel.utils import dist, infinity, isnan
6+
from ..kernel.real_intervals import ARITHMETICS
67

78

89
def HansenSengupta(func, J, x0, maxiter=2000, tol=1e-12):

setup.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@
1717

1818
setup(
1919
name='intvalpy',
20-
version='1.6.2',
20+
version='1.6.3',
2121
description='IntvalPy - a Python interval computation library',
2222
long_description=README,
2323
long_description_content_type='text/markdown',

0 commit comments

Comments
 (0)