Skip to content

Commit

Permalink
plotting precompiled
Browse files Browse the repository at this point in the history
  • Loading branch information
jkosata committed Dec 13, 2022
1 parent fd07bd6 commit d4fa71b
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 3 deletions.
5 changes: 3 additions & 2 deletions src/HarmonicBalance.jl
Original file line number Diff line number Diff line change
Expand Up @@ -62,7 +62,8 @@ module HarmonicBalance
include("modules/LimitCycles.jl")
using .LimitCycles

precomp_path = (@__DIR__) * "/../test/parametron.jl"
@precompile_all_calls include(precomp_path)
precomp_path = (@__DIR__) * "/../test/"
@precompile_all_calls include(precomp_path * "parametron.jl")
@precompile_all_calls include(precomp_path * "plotting.jl")

end # module
2 changes: 1 addition & 1 deletion test/plotting.jl
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
using HarmonicBalance, Plots
default(show=false)
using Test
#using Test #

@variables γ, λ, x, η, α, ω0, ω
@variables t x(t)
Expand Down

0 comments on commit d4fa71b

Please sign in to comment.