Skip to content

Commit

Permalink
export interval definition for convenience (#176)
Browse files Browse the repository at this point in the history
* export interval definition for convenience

* Update Project.toml

* export via reexport

* add reexcportt to deps

* typo fix missed using
  • Loading branch information
Datseris authored Aug 5, 2021
1 parent dfcc898 commit f0014e4
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 2 deletions.
4 changes: 3 additions & 1 deletion Project.toml
Original file line number Diff line number Diff line change
@@ -1,18 +1,20 @@
name = "IntervalRootFinding"
uuid = "d2bf35a9-74e0-55ec-b149-d360ff49b807"
version = "0.5.7"
version = "0.5.8"

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

[compat]
ForwardDiff = "0.10"
IntervalArithmetic = "0.15, 0.16, 0.17, 0.18"
Polynomials = "0.5, 0.6, 0.7, 0.8, 1, 2"
Reexport = "1"
StaticArrays = "0.11, 0.12, 1.0"
julia = "1"

Expand Down
5 changes: 4 additions & 1 deletion src/IntervalRootFinding.jl
Original file line number Diff line number Diff line change
Expand Up @@ -24,9 +24,12 @@ export
gauss_elimination_interval, gauss_elimination_interval!,
slope

export isunique, root_status


export isunique, root_status
using Reexport
@reexport using IntervalArithmetic

import IntervalArithmetic: interval, wideinterval


Expand Down

2 comments on commit f0014e4

@lucaferranti
Copy link
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

@JuliaRegistrator
Copy link

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Registration pull request created: JuliaRegistries/General/42243

After the above pull request is merged, it is recommended that a tag is created on this repository for the registered package version.

This will be done automatically if the Julia TagBot GitHub Action is installed, or can be done manually through the github interface, or via:

git tag -a v0.5.8 -m "<description of version>" f0014e46879cf0db7a1d0e2ae1edc492688f77a7
git push origin v0.5.8

Please sign in to comment.