Skip to content

Commit

Permalink
fix: comment out incorrect NNRODE implementation
Browse files Browse the repository at this point in the history
  • Loading branch information
avik-pal committed Oct 16, 2024
1 parent c483d1c commit f369713
Show file tree
Hide file tree
Showing 4 changed files with 8 additions and 7 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/Downgrade.yml
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@ jobs:
- PDEBPINN
- NNPDE1
- NNPDE2
- NNRODE
# - NNRODE
- AdaptiveLoss
- Logging
- Forward
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/Tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,7 @@ jobs:
- "PDEBPINN"
- "NNPDE1"
- "NNPDE2"
- "NNRODE"
# - "NNRODE"
- "AdaptiveLoss"
- "Logging"
- "Forward"
Expand Down
5 changes: 3 additions & 2 deletions src/NeuralPDE.jl
Original file line number Diff line number Diff line change
Expand Up @@ -78,7 +78,7 @@ include("training_strategies.jl")
include("adaptive_losses.jl")

include("ode_solve.jl")
include("rode_solve.jl")
# include("rode_solve.jl")
include("dae_solve.jl")

include("transform_inf_integral.jl")
Expand All @@ -91,7 +91,8 @@ include("PDE_BPINN.jl")

include("dgm.jl")

export NNODE, NNDAE, NNRODE
export NNODE, NNDAE
# export NNRODE
export BNNODE, ahmc_bayesian_pinn_ode, ahmc_bayesian_pinn_pde
export PhysicsInformedNN, discretize
export BPINNsolution, BayesianPINN
Expand Down
6 changes: 3 additions & 3 deletions test/runtests.jl
Original file line number Diff line number Diff line change
Expand Up @@ -51,9 +51,9 @@ end
@time @safetestset "AdaptiveLoss" include("adaptive_loss_tests.jl")
end

if GROUP == "All" || GROUP == "NNRODE"
@time @safetestset "NNRODE" include("NNRODE_tests.jl")
end
# if GROUP == "All" || GROUP == "NNRODE"
# @time @safetestset "NNRODE" include("NNRODE_tests.jl")
# end

if GROUP == "All" || GROUP == "Forward"
@time @safetestset "Forward" include("forward_tests.jl")
Expand Down

0 comments on commit f369713

Please sign in to comment.