diff --git a/.github/workflows/Downgrade.yml b/.github/workflows/Downgrade.yml index 15e10cf2d2..ec13b3fb8e 100644 --- a/.github/workflows/Downgrade.yml +++ b/.github/workflows/Downgrade.yml @@ -22,7 +22,7 @@ jobs: - PDEBPINN - NNPDE1 - NNPDE2 - - NNRODE + # - NNRODE - AdaptiveLoss - Logging - Forward diff --git a/.github/workflows/Tests.yml b/.github/workflows/Tests.yml index 43438efc85..0e4bf86872 100644 --- a/.github/workflows/Tests.yml +++ b/.github/workflows/Tests.yml @@ -31,7 +31,7 @@ jobs: - "PDEBPINN" - "NNPDE1" - "NNPDE2" - - "NNRODE" + # - "NNRODE" - "AdaptiveLoss" - "Logging" - "Forward" diff --git a/src/NeuralPDE.jl b/src/NeuralPDE.jl index 9cd40b2392..19391bb8e2 100644 --- a/src/NeuralPDE.jl +++ b/src/NeuralPDE.jl @@ -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") @@ -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 diff --git a/test/runtests.jl b/test/runtests.jl index 4d0034cdd3..27fbc12861 100644 --- a/test/runtests.jl +++ b/test/runtests.jl @@ -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")