From 7b97a97b76b5b03f1bc8049f1e1f546fc7bf3db5 Mon Sep 17 00:00:00 2001 From: MatthewStuber <33096280+MatthewStuber@users.noreply.github.com> Date: Tue, 13 Mar 2018 20:32:36 -0400 Subject: [PATCH] Update README.md --- README.md | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/README.md b/README.md index c8804f0..3e7c843 100644 --- a/README.md +++ b/README.md @@ -3,14 +3,14 @@ A library for bounding functions via parametric interval methods ## Installation -''' +```julia julia> Pkg.add("EAGOParametricInterval") -''' +``` ## Capabilities **EAGOParametricInterval.jl** provides methods for performing parametric interval calculations such as (Parametric Interval Newton/Krawczyk) as well as a series of tests to verify the (non)existence of unique enclosed functions. This routine -are used extensively in the `EAGO.jl`[https://github.com/MatthewStuber/EAGO.jl] package solver +are used extensively in the `EAGO.jl`(https://github.com/MatthewStuber/EAGO.jl) package solver Currently, it exports four types of contractor functions for use. This contractors include embedded test for the guaranteed existence or non-existence. Please see the example.jl file for usage cases. @@ -25,9 +25,9 @@ performance. Namely, row handling for the sparse LU factorization for interval midpoint computation. ## Related Packages -- **EAGO.jl**[https://github.com/MatthewStuber/EAGO.jl]: A package containing global and robust solvers based mainly on McCormick relaxations. +- **EAGO.jl**(https://github.com/MatthewStuber/EAGO.jl): A package containing global and robust solvers based mainly on McCormick relaxations. This package supports a JuMP and MathProgBase interface. -- **IntervalRootFinding.jl**[https://github.com/JuliaIntervals/IntervalRootFinding.jl]: Provides root finding routines using Interval Newton +- **IntervalRootFinding.jl**(https://github.com/JuliaIntervals/IntervalRootFinding.jl): Provides root finding routines using Interval Newton and Krawczyk methods but don't include parametric method, methods with embedded test, or handling of large sparse matrices for preconditioner calculation.