From c29da3beffc990f05f0df23bd275ac59717e9232 Mon Sep 17 00:00:00 2001 From: Boris Kaus Date: Fri, 24 May 2024 12:09:57 +0200 Subject: [PATCH] next --- scripts/TM_Subduction_example.jl | 3 +++ test/test_examples.jl | 3 ++- 2 files changed, 5 insertions(+), 1 deletion(-) diff --git a/scripts/TM_Subduction_example.jl b/scripts/TM_Subduction_example.jl index fc54e4a4..8cb5c832 100644 --- a/scripts/TM_Subduction_example.jl +++ b/scripts/TM_Subduction_example.jl @@ -234,6 +234,9 @@ model.Solver = Solver( SolverType = "multigrid", ] ) +if Sys.iswindows() + model.Solver.MGCoarseSolver = "direct" +end try testing == true @show pwd() diff --git a/test/test_examples.jl b/test/test_examples.jl index 3bac13d7..862ca948 100644 --- a/test/test_examples.jl +++ b/test/test_examples.jl @@ -5,7 +5,8 @@ const testing = true @testset "examples in /scripts" begin curdir = pwd() pkg_dir = pkgdir(LaMEM) - cd(joinpath(pkg_dir,"test")) + cd(pkg_dir) + #cd(joinpath(pkg_dir,"test")) # 3D subduction example if !Sys.iswindows()