Dario Mangoni
Dario Mangoni
The issue on `Eigen::SparseLU` solver, that is wrapped by `ChSolverSparseLU`, seems to be due to the `/arch:AVX2` definition. It is possible to observe the bug with _demo_FEA_cables_ and I think...
In *4_callbacks_hyperparameter_tuning.ipynb* I see that `PlottingCallback` has no `log_dir` nor `self.log_dir` variables available, but yet it is called in `x, y = ts2xy(load_results(log_dir), 'timesteps')` Did I miss something? It's just...
## Actual behavior All the constant-size stack arrays defined in `icb_arpack_c.c` have a size defined by an `a_int` variable that does not have the required constness. e.g. ``` a_int N...
Hi guys, I've been trying to solve the following problem:  where  I anticipate that M_tilde and K_tilde matrices are real, but are NOT positive-definite and NOT symmetric, none...
A 30 millisecond delay after trigger is a huge time (Ultrasonic.cpp@48). Maybe was 30 microseconds?
Both *bug_1315_single.c* and *bug_1315_double.c* declare an array through a non-const integer variable `N`, at line 30: ``` a_int N = 1000; ... float resid[N]; ``` - the C language does...
I'm using Ryu from [fast_matrix_market](https://github.com/alugowski/fast_matrix_market), but I think that the same applies also here. In _CMakeLists.txt_, by calling `add_library` without the `STATIC` option, the choice between `STATIC` or `SHARED` is...
Few GameObjects and settings were obsoleted in the latest versions of Unity, especially regarding the XR components. The changes are intended to: - update the repository to the latest LTS...
Roads.Interfaces.Base functions are not constrained to be of the type declared in Roads.Interfaces
I have a doubt that, if you confirm, can be an issue. Look at **Roads.Interfaces.Base**. There are 5 variables (position, trackOffset, etc...). These 5 variables are of type `replaceable function`...
In _dependencies/ryu/CMakeLists.txt_, by calling _add_library_ without the `STATIC` option, the choice between `STATIC` or `SHARED` is left to the `BUILD_SHARED_LIBS` option, set anywhere else in the parent CMake files. However,...