src/lib.rs

branch
dev
changeset 67
95bb12bdb6ac
parent 63
7a8a55fd41c0
equal deleted inserted replaced
66:fe47ad484deb 67:95bb12bdb6ac
7 #![allow(mixed_script_confusables)] 7 #![allow(mixed_script_confusables)]
8 #![allow(confusable_idents)] 8 #![allow(confusable_idents)]
9 // Linear operators may be written e.g. as `opA`, to keep the capital letters of mathematical 9 // Linear operators may be written e.g. as `opA`, to keep the capital letters of mathematical
10 // convention while referring to the type (trait) of the operator as `A`. 10 // convention while referring to the type (trait) of the operator as `A`.
11 #![allow(non_snake_case)] 11 #![allow(non_snake_case)]
12 // Need to create parse errors
13 #![feature(dec2flt)]
14 12
15 use alg_tools::error::DynResult; 13 use alg_tools::error::DynResult;
16 use alg_tools::parallelism::{set_max_threads, set_num_threads}; 14 use alg_tools::parallelism::{set_max_threads, set_num_threads};
17 use clap::Parser; 15 use clap::Parser;
18 use serde::{Deserialize, Serialize}; 16 use serde::{Deserialize, Serialize};

mercurial