solstice-solver

Solver library of the solstice app
git clone git://git.meso-star.com/solstice-solver.git
Log | Files | Refs | README | LICENSE

commit 8850e89f83292a0543db339b8b923c77677422ec
parent 9edd3b94096674289660545eca4e7527d6e6e4ec
Author: Christophe Coustet <christophe.coustet@meso-star.com>
Date:   Fri, 22 Sep 2017 16:16:59 +0200

Fix line unexpectedly modified in a previous commit.

Test1 was single threaded, now multithreaded again.

Diffstat:
Msrc/test_ssol_solver1.c | 2+-
1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/src/test_ssol_solver1.c b/src/test_ssol_solver1.c @@ -104,7 +104,7 @@ main(int argc, char** argv) mem_init_proxy_allocator(&allocator, &mem_default_allocator); CHECK(ssol_device_create - (NULL, &allocator, (SSOL_NTHREADS_DEFAULT,1), 0, &dev), RES_OK); + (NULL, &allocator, SSOL_NTHREADS_DEFAULT, 0, &dev), RES_OK); CHECK(ssp_rng_create(&allocator, &ssp_rng_threefry, &rng), RES_OK);