From ba1e05f16bd719d2e760e6860342a9a25324bb0d Mon Sep 17 00:00:00 2001 From: David Shah Date: Fri, 25 Jan 2019 14:04:19 +0000 Subject: HeAP: Implement 'all+rotate' HeAP strategy Signed-off-by: David Shah --- common/placer_math.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'common/placer_math.c') diff --git a/common/placer_math.c b/common/placer_math.c index 53b6190d..1aa74a9d 100644 --- a/common/placer_math.c +++ b/common/placer_math.c @@ -4,7 +4,7 @@ #include void taucif_init_solver() { - taucs_logfile("stdout"); + //taucs_logfile("stdout"); } struct taucif_system { @@ -39,7 +39,7 @@ void taucif_finalise_matrix(struct taucif_system *sys) { int taucif_solve_system(struct taucif_system *sys, double *x, double *rhs) { // FIXME: preconditioner, droptol?? - taucs_ccs_matrix* precond_mat = taucs_ccs_factor_llt(sys->mat, 1e-3, 0); + taucs_ccs_matrix* precond_mat = taucs_ccs_factor_llt(sys->mat, 1e-2, 0); if (precond_mat == NULL) return -1; // FIXME: itermax, convergetol -- cgit v1.2.3