You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: README.md
+5-5
Original file line number
Diff line number
Diff line change
@@ -105,7 +105,7 @@ This tool may be useful for debugging those sorts of issues.
105
105
106
106
## Usage
107
107
108
-
1. Call `using TrackedFloats`; you may want to include functions like `enable_nan_injection` or `tf_config_logger` or the like. (See below for more details.)
108
+
1. Call `using TrackedFloats`; you may want to include functions like `tf_enable_nan_injection` or `tf_config_logger` or the like. (See below for more details.)
109
109
2. Add additional customization to logging and injection.
110
110
3. Wrap as many of your inputs in `TrackedFloatN` as you can.
111
111
@@ -169,16 +169,16 @@ TrackedFloats can *inject* `NaN`s at random points in your program to help you f
169
169
170
170
```julia
171
171
# Inject 2 NaNs
172
-
enable_nan_injection(2)
172
+
tf_enable_nan_injection(2)
173
173
174
174
# Inject 2 NaNs, except when in the function "nope" in "way.jl"
0 commit comments