Skip to content

Commit 879ebff

Browse files
committed
remove unecessary dependency
1 parent 37592cc commit 879ebff

File tree

2 files changed

+3
-4
lines changed

2 files changed

+3
-4
lines changed

Project.toml

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,6 @@ LineSearches = "d3d80556-e9d4-5f37-9878-2ab0fcc64255"
1414
LinearAlgebra = "37e2e46d-f89d-539d-b4ee-838fcccc9c8e"
1515
NLsolve = "2774e3e8-f4cf-5e23-947b-6d7e65073b56"
1616
PreallocationTools = "d236fae5-4411-538c-8e31-a6e3d9e00b46"
17-
Primes = "27ebfcd6-29c5-5fa9-bf4b-fb8fc14df3ae"
1817
Printf = "de0858da-6303-5e67-8744-51eddeeeb8d7"
1918
QuadGK = "1fd47b50-473d-5c70-9696-f719f8f3bcdc"
2019
SimpleNonlinearSolve = "727e6d20-b764-4bd8-a329-72de5adea6c7"
@@ -34,7 +33,6 @@ IterativeSolvers = "0.9"
3433
LineSearches = "7"
3534
NLsolve = "4"
3635
PreallocationTools = "0.4"
37-
Primes = "0.5"
3836
QuadGK = "2"
3937
SimpleNonlinearSolve = "1"
4038
SpecialFunctions = "2"

src/DuctAPE.jl

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,6 @@ const c4b = C4Blade
1414
using SpecialFunctions # required for elliptic integrals
1515
# For Integration
1616
using FastGaussQuadrature
17-
using Primes #TODO: likely not necessary
1817
using QuadGK
1918

2019
# - Packages for Code Efficiency - #
@@ -24,10 +23,12 @@ using PreallocationTools # caches
2423
# - Packages for Solves - #
2524
using ImplicitAD # used for all solves
2625
using LinearAlgebra # linear solve and LU decomposition
26+
# General Nonlinear solves
2727
using SimpleNonlinearSolve
28+
# Fixed-Point Iteration Solvers
2829
# using FixedPointAcceleration
2930
using SpeedMapping
30-
# TODO: determine if these are needed after implementing NonlinearSolve.jl
31+
# For using NLsolve
3132
using NLsolve #for newton solver
3233
using LineSearches # used in newton solver
3334
using ForwardDiff # used for jacobian for newton solver

0 commit comments

Comments
 (0)