From 0b99d3f24b82a8fd9645424eff93a60ada840e3c Mon Sep 17 00:00:00 2001 From: Qi Zhang Date: Wed, 25 Sep 2019 04:58:45 -0400 Subject: [PATCH] Rename `FindVolume` module to `Find` #29 --- src/EquationsOfState.jl | 2 +- src/{FindVolume.jl => Find.jl} | 4 ++-- test/{FindVolume.jl => Find.jl} | 2 +- test/runtests.jl | 2 +- 4 files changed, 5 insertions(+), 5 deletions(-) rename src/{FindVolume.jl => Find.jl} (97%) rename test/{FindVolume.jl => Find.jl} (98%) diff --git a/src/EquationsOfState.jl b/src/EquationsOfState.jl index 4c1dc0d..4f8a386 100644 --- a/src/EquationsOfState.jl +++ b/src/EquationsOfState.jl @@ -5,6 +5,6 @@ include("Collections.jl") include("NonlinearFitting.jl") include("FiniteStrains.jl") include("LinearFitting.jl") -include("FindVolume.jl") +include("Find.jl") end # module diff --git a/src/FindVolume.jl b/src/Find.jl similarity index 97% rename from src/FindVolume.jl rename to src/Find.jl index f122bdb..dfd2317 100644 --- a/src/FindVolume.jl +++ b/src/Find.jl @@ -1,5 +1,5 @@ """ -# module FindVolume +# module Find @@ -9,7 +9,7 @@ julia> ``` """ -module FindVolume +module Find using InteractiveUtils: subtypes using Statistics: median diff --git a/test/FindVolume.jl b/test/Find.jl similarity index 98% rename from test/FindVolume.jl rename to test/Find.jl index 793df39..567109e 100644 --- a/test/FindVolume.jl +++ b/test/Find.jl @@ -4,7 +4,7 @@ using Roots using EquationsOfState using EquationsOfState.Collections -using EquationsOfState.FindVolume +using EquationsOfState.Find # Data in the following tests are from # https://github.com/materialsproject/pymatgen/blob/1f0957b8525ddc7d12ea348a19caecebe6c7ff34/pymatgen/analysis/tests/test_eos.py diff --git a/test/runtests.jl b/test/runtests.jl index 6474e64..e082a3e 100644 --- a/test/runtests.jl +++ b/test/runtests.jl @@ -6,5 +6,5 @@ using Test include("FiniteStrains.jl") include("NonlinearFitting.jl") include("LinearFitting.jl") - # include("FindVolume.jl") + # include("Find.jl") end