From b7dbb6d36517a4d2b921d2f6ec2967884c6a1ade Mon Sep 17 00:00:00 2001 From: Santiago Badia Date: Mon, 28 Feb 2022 13:35:26 +1100 Subject: [PATCH] Eliminating GridapODEs dep --- Project.toml | 4 +--- src/poisson_transient.jl | 3 --- 2 files changed, 1 insertion(+), 6 deletions(-) diff --git a/Project.toml b/Project.toml index 25e615e0..3645ac69 100644 --- a/Project.toml +++ b/Project.toml @@ -10,7 +10,6 @@ FillArrays = "1a297f60-69ca-5386-bcde-b61e274b549b" Gridap = "56d4f2e9-7ea1-5844-9cf6-b9c51ca7ce8e" GridapDistributed = "f9701e48-63b3-45aa-9a63-9bc6c271f355" GridapGmsh = "3025c34a-b394-11e9-2a55-3fee550c04c8" -GridapODEs = "55e38337-5b6e-4c7c-9cfc-e00dd49102e6" GridapP4est = "c2c8e14b-f5fd-423d-9666-1dd9ad120af9" GridapPETSc = "bcdc36c2-0c3e-11ea-095a-c9dadae499f1" IJulia = "7073ff75-c697-5162-941a-fcdaad2a7d2a" @@ -27,10 +26,9 @@ Random = "9a3f8284-a2c9-5f02-9a11-845980a1fd5c" SpecialFunctions = "276daf66-3868-5448-9aa4-cd146d93841b" [compat] -Gridap = "0.17.8" +Gridap = "0.17.9" GridapDistributed = "0.2" GridapGmsh = "0.6" -GridapODEs = "0.8" GridapP4est = "0.1" GridapPETSc = "0.4" MPI = "0.19" diff --git a/src/poisson_transient.jl b/src/poisson_transient.jl index 497b21cb..7dfb2561 100644 --- a/src/poisson_transient.jl +++ b/src/poisson_transient.jl @@ -38,9 +38,6 @@ # Let us load the two packages that we will use in this tutorial `Gridap` and `GridapODEs`. using Gridap -using GridapODEs -using GridapODEs.ODETools -using GridapODEs.TransientFETools # First, we define the `DiscreteModel` and the `Triangulation`. More details on this can be found in [tutorial 2](https://gridap.github.io/Tutorials/stable/pages/t002_validation/).