From 9ff8c228fded24919498ad617736e32e40c2d4e2 Mon Sep 17 00:00:00 2001 From: lrennels Date: Mon, 23 Mar 2020 15:56:11 -0700 Subject: [PATCH] Generalize doctest output --- docs/src/tutorials/tutorial_4.md | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/docs/src/tutorials/tutorial_4.md b/docs/src/tutorials/tutorial_4.md index 48abeb812..479ce1846 100644 --- a/docs/src/tutorials/tutorial_4.md +++ b/docs/src/tutorials/tutorial_4.md @@ -186,7 +186,7 @@ param1 = Normal(0, 0.8) The `@defsim` macro also selects the sampling method. Simple random sampling (also called Monte Carlo sampling) is the default. Other options include Latin Hypercube sampling and Sobol sampling. -```jldoctest tutorial4; output = false +```jldoctest tutorial4; output = false, filter = r".*"s using Mimi using Distributions @@ -226,7 +226,6 @@ end # output -LHSData(Tuple{Symbol,Symbol,Float64}[(:name1, :name2, 0.7), (:name1, :name3, 0.5)]) ``` ### Step 3. Run Simulation