Skip to content

Commit de7e0e1

Browse files
committed
drop NLsolve dependency
1 parent cc2705a commit de7e0e1

File tree

6 files changed

+2
-35
lines changed

6 files changed

+2
-35
lines changed

Project.toml

Lines changed: 0 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -30,8 +30,6 @@ Manifolds = "1cead3c2-87b3-11e9-0ccd-23c62b72b94e"
3030
ManifoldsBase = "3362f125-f0bb-47a3-aa74-596ffd7ef2fb"
3131
Manopt = "0fc0a36d-df90-57f3-8f93-d78a9fc72bb5"
3232
MetaGraphs = "626554b9-1ddb-594c-aa3c-2596fe9399a5"
33-
NLSolversBase = "d41bc354-129a-5804-8e4c-c37616107c6c"
34-
NLsolve = "2774e3e8-f4cf-5e23-947b-6d7e65073b56"
3533
Optim = "429524aa-4258-5aef-a3af-852621145aeb"
3634
OrderedCollections = "bac558e1-5e72-5ebc-8fee-abe8a469f55d"
3735
PrecompileTools = "aea7be01-6a6a-4083-8856-8a6e6704d82a"
@@ -78,8 +76,6 @@ Manifolds = "0.8.15"
7876
ManifoldsBase = "0.13.12, 0.14"
7977
Manopt = "0.4.27"
8078
MetaGraphs = "0.7"
81-
NLSolversBase = "7.6"
82-
NLsolve = "3, 4"
8379
Optim = "1"
8480
OrderedCollections = "1"
8581
PrecompileTools = "1"

src/IncrementalInference.jl

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -27,8 +27,6 @@ export TranslationGroup, RealCircleGroup
2727
# common non-groups -- TODO still teething problems to sort out in IIF v0.25-v0.26.
2828
export Euclidean, Circle
2929

30-
import NLsolve
31-
import NLSolversBase
3230
import Optim
3331

3432
using Dates,

src/services/NumericalCalculations.jl

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -349,7 +349,7 @@ Notes
349349
- Assumes `cpt_.p` is already set to desired X decision variable dimensions and size.
350350
- Assumes only `ccw.particleidx` will be solved for
351351
- small random (off-manifold) perturbation used to prevent trivial solver cases, div by 0 etc.
352-
- perturb is necessary for NLsolve cases, and smaller than 1e-10 will result in test failure
352+
- perturb is necessary for NLsolve (obsolete) cases, and smaller than 1e-10 will result in test failure
353353
- Also incorporates the active hypo lookup
354354
355355
DevNotes

test/runtests.jl

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -47,7 +47,6 @@ include("testTreeSaveLoad.jl")
4747
# include("testGradientUtils.jl")
4848
# include("testFactorGradients.jl")
4949
include("testSpecialSampler.jl") # TODO, rename, refine
50-
include("testNLsolve.jl")
5150
include("testCommonConvWrapper.jl")
5251

5352
include("testApproxConv.jl")

test/testCommonConvWrapper.jl

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
# test CommonConvWrapper
22

33
using Test
4-
using NLsolve
4+
# using NLsolve
55
using IncrementalInference
66
using Manifolds
77
using Statistics

test/testNLsolve.jl

Lines changed: 0 additions & 26 deletions
This file was deleted.

0 commit comments

Comments
 (0)