Skip to content

Commit

Permalink
Drop RecursiveArrayTools direct dep
Browse files Browse the repository at this point in the history
  • Loading branch information
ivborissov committed Mar 5, 2024
1 parent b076b66 commit 8c44012
Show file tree
Hide file tree
Showing 2 changed files with 9 additions and 7 deletions.
2 changes: 0 additions & 2 deletions Project.toml
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,6 @@ NodeJS = "2bd173c7-0d6d-553b-b6af-13a54713934c"
OrdinaryDiffEq = "1dea7af3-3e70-54e6-95c3-0bf5283fa5ed"
ProgressMeter = "92933f4c-e287-5a05-a399-4b506db050ca"
RecipesBase = "3cdcf5f2-1ef4-517c-9805-6587b60abb01"
RecursiveArrayTools = "731186ca-8d62-57ce-b412-fbd966d074cd"
Reexport = "189a3867-3050-52da-a836-e630ba90ab69"
SciMLBase = "0bca4576-84f4-4d90-8ffe-ffa030f20462"
Sundials = "c3572dad-4567-51f8-b174-8c6c989267f4"
Expand All @@ -36,7 +35,6 @@ NodeJS = "2"
OrdinaryDiffEq = "6"
ProgressMeter = "1"
RecipesBase = "1"
RecursiveArrayTools = "2.36, 3"
Reexport = "1"
SciMLBase = "2.15"
Sundials = "4.24"
Expand Down
14 changes: 9 additions & 5 deletions src/HetaSimulator.jl
Original file line number Diff line number Diff line change
Expand Up @@ -5,31 +5,35 @@ module HetaSimulator
const SUPPORTED_VERSIONS = ["0.8.1"]

using Reexport

# heta compiler support
using NodeJS

# diffeq-related pkgs
using LabelledArrays
using DataStructures
using SciMLBase
@reexport using OrdinaryDiffEq
using SciMLBase.RecursiveArrayTools: VectorOfArray, vecarr_to_vectors, DiffEqArray
@reexport using SciMLBase.EnsembleAnalysis
@reexport using OrdinaryDiffEq
using Sundials
@reexport using NaNMath

# fitting
using NLopt

# utils
using LabelledArrays
using DataStructures
@reexport using NaNMath
@reexport using DataFrames
@reexport using Distributions
using LinearAlgebra
using Distributed
using RecursiveArrayTools: VectorOfArray, vecarr_to_vectors, DiffEqArray
using ProgressMeter
#ProgressMeter.ijulia_behavior(:clear)

# measurements
using CSV
using XLSX

#plots
using RecipesBase

Expand Down

0 comments on commit 8c44012

Please sign in to comment.