diff --git a/docs/sources.tar b/docs/sources.tar index 3eb622a..7cfd2fb 100644 Binary files a/docs/sources.tar and b/docs/sources.tar differ diff --git a/src/root.zig b/src/root.zig index 30cb0f2..3c5a33d 100644 --- a/src/root.zig +++ b/src/root.zig @@ -2,8 +2,8 @@ //! functions for probability distributions. //! //! Asserts invalid distribution parameters on Debug and ReleaseSafe modes -//! such as ±NaN, ±Inf, probabilities outside of the [0,1] interval and -//! certain parameters with value zero or negative. +//! such as ±NaN, ±Inf, probabilities outside of the [0,1] interval or +//! negative shape/scale parameters //! //! Random variable generation has 2 flavours: `random` and `fill`, //! * `random` returns a single random variable diff --git a/test_compile_error.zig b/test_compile_error.zig deleted file mode 100644 index de82ba8..0000000 --- a/test_compile_error.zig +++ /dev/null @@ -1,46 +0,0 @@ -const std = @import("std"); - -test { - // _ = &std.ArrayHashMap(void, void, void, true).move; - // _ = &std.Build.Cache.Path.makeOpenPath; - // _ = &std.coff.SectionHeader.setAlignment; - // _ = &std.crypto.stream.chacha.ChaCha8With64BitNonce.stream; - // _ = &std.crypto.pwhash.bcrypt.pbkdf; - // _ = &std.os.windows.GetFileAttributes; - // _ = &std.os.windows.MoveFileEx; - // _ = &std.valgrind.innerThreads; - // _ = &std.valgrind.monitorCommand; - // _ = &std.valgrind.memcheck.doAddedLeakCheck; - // _ = &std.valgrind.memcheck.doChangedLeakCheck; - // _ = &std.valgrind.memcheck.doLeakCheck; - // _ = &std.valgrind.memcheck.doQuickLeakCheck; - // _ = &std.valgrind.memcheck.getVbits; - // _ = &std.valgrind.memcheck.setVbits; - - // _ = &std.fs.createFileAbsoluteW; - // _ = &std.fs.deleteDirAbsoluteW; - // _ = &std.fs.deleteFileAbsoluteW; - // _ = &std.fs.makeDirAbsoluteW; - // _ = &std.fs.readlinkAbsoluteW; - // _ = &std.fs.renameW; - // _ = &std.fs.symLinkAbsoluteW; - // _ = &std.fs.Dir.makeDirW; - // _ = &std.fs.Dir.renameW; - - // _ = &std.crypto.Certificate.Parsed.pubKeySigAlgo; - // _ = &std.crypto.onetimeauth.Poly1305.pad; - // _ = &std.crypto.ecc.P256.subMixed; - // _ = &std.crypto.ecc.P384.subMixed; - // _ = &std.crypto.ecc.Secp256k1.subMixed; - - // _ = &std.Build.Step.Compile.dependsOnSystemLibrary; - // _ = &std.Build.Step.TranslateC.defineCMacro; - // _ = &std.DynLib.openZ; - // _ = &std.heap.alignPageAllocLen; - // _ = &std.process.changeCurDirC; - - // _ = &std.fmt.Parser.peek; - // _ = &std.fmt.Parser.until; - - _ = &std.debug.UnwindError; -}