youngzhaozju
youngzhaozju
Hi, Thanks for the nice project. I want to write some series of data in a time, but I found the client.query() can handel only a series record a time....
Hey, I want to utilize Rhai on STM32. I found some advices from the book that it is not advised to utilized it on microchips. I am wondering what's the...
I am compling sys info from windows to arm64, I found the following error: PS G:\2.Codingx\TEST\testlinux> cargo build --release --target aarch64-unknown-linux-gnu Compiling libc v0.2.139 Compiling cc v1.0.78 Compiling sys-info v0.9.1...
#[test] fn create_sol() { let mut model = Model::new() .hide_output() .include_default_plugins() .create_prob("test") .set_obj_sense(ObjSense::Minimize); let x1 = model.add_var(0., 1., 3., "x1", VarType::Binary); let x2 = model.add_var(0., 1., 4., "x2", VarType::Binary); let...
Hey, I want to use the function of "SCIPcreateExprPow". It is not available currently. Therefore, I want to add it by my self. pub(crate) fn create_pow_expr( &mut self, base: &Variable,...
Hey, I found the LM lib only utilized 10% CPU. How to make it work faster? My problem has 200 vars. Thank you!