From ba4031db2d1510e2a0f5c0aac64b6204be8ff8bf Mon Sep 17 00:00:00 2001 From: Astitva Aggarwal Date: Wed, 27 Dec 2023 15:56:47 +0530 Subject: [PATCH] tests-2 --- test/BPINN_PDE_tests.jl | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/test/BPINN_PDE_tests.jl b/test/BPINN_PDE_tests.jl index b23c5058db..8862092761 100644 --- a/test/BPINN_PDE_tests.jl +++ b/test/BPINN_PDE_tests.jl @@ -13,7 +13,7 @@ Dt = Differential(t) eqs = Dt(u(t)) - cos(2 * π * t) ~ 0 bcs = [u(0) ~ 0.0] -domains = [t ∈ Interval(0.0, 4.0)] +domains = [t ∈ Interval(0.0, 2.0)] chainf = Flux.Chain(Flux.Dense(1, 6, tanh), Flux.Dense(6, 1)) init1, re1 = Flux.destructure(chainf)