Skip to content

Commit f0014e4

Browse files
authored
export interval definition for convenience (#176)
* export interval definition for convenience * Update Project.toml * export via reexport * add reexcportt to deps * typo fix missed using
1 parent dfcc898 commit f0014e4

File tree

2 files changed

+7
-2
lines changed

2 files changed

+7
-2
lines changed

Project.toml

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,18 +1,20 @@
11
name = "IntervalRootFinding"
22
uuid = "d2bf35a9-74e0-55ec-b149-d360ff49b807"
3-
version = "0.5.7"
3+
version = "0.5.8"
44

55
[deps]
66
ForwardDiff = "f6369f11-7733-5829-9624-2563aa707210"
77
IntervalArithmetic = "d1acc4aa-44c8-5952-acd4-ba5d80a2a253"
88
LinearAlgebra = "37e2e46d-f89d-539d-b4ee-838fcccc9c8e"
99
Polynomials = "f27b6e38-b328-58d1-80ce-0feddd5e7a45"
10+
Reexport = "189a3867-3050-52da-a836-e630ba90ab69"
1011
StaticArrays = "90137ffa-7385-5640-81b9-e52037218182"
1112

1213
[compat]
1314
ForwardDiff = "0.10"
1415
IntervalArithmetic = "0.15, 0.16, 0.17, 0.18"
1516
Polynomials = "0.5, 0.6, 0.7, 0.8, 1, 2"
17+
Reexport = "1"
1618
StaticArrays = "0.11, 0.12, 1.0"
1719
julia = "1"
1820

src/IntervalRootFinding.jl

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -24,9 +24,12 @@ export
2424
gauss_elimination_interval, gauss_elimination_interval!,
2525
slope
2626

27-
export isunique, root_status
2827

2928

29+
export isunique, root_status
30+
using Reexport
31+
@reexport using IntervalArithmetic
32+
3033
import IntervalArithmetic: interval, wideinterval
3134

3235

0 commit comments

Comments
 (0)