From 9f9f358a2fe9519e15fb2d17a0facd00a4ef41ff Mon Sep 17 00:00:00 2001 From: Christopher Rackauckas Date: Mon, 6 Apr 2020 18:50:42 -0400 Subject: [PATCH] NaN-Safe Branch This is a branch with NaN-safe mode enabled to make it easier for folks to get this turned on. We can just keep rebasing as necessary. It's good for helping people make MWEs who don't necessarily know a bunch of dev stuff. --- src/prelude.jl | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/prelude.jl b/src/prelude.jl index 1eea8211..1709f650 100644 --- a/src/prelude.jl +++ b/src/prelude.jl @@ -1,4 +1,4 @@ -const NANSAFE_MODE_ENABLED = false +const NANSAFE_MODE_ENABLED = true const AMBIGUOUS_TYPES = (AbstractFloat, Irrational, Integer, Rational, Real, RoundingMode)