From 47ce2d7bef32a7f5de34ac3e0cfb8300a4e63cd9 Mon Sep 17 00:00:00 2001 From: Brecht Van Lommel Date: Sun, 22 Nov 2015 05:25:32 +0100 Subject: OpenNL: significantly simplify code using Eigen / STL. --- source/blender/modifiers/intern/MOD_laplaciansmooth.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'source/blender/modifiers/intern/MOD_laplaciansmooth.c') diff --git a/source/blender/modifiers/intern/MOD_laplaciansmooth.c b/source/blender/modifiers/intern/MOD_laplaciansmooth.c index f04e092b39e..aef28d24a51 100644 --- a/source/blender/modifiers/intern/MOD_laplaciansmooth.c +++ b/source/blender/modifiers/intern/MOD_laplaciansmooth.c @@ -468,7 +468,7 @@ static void laplaciansmoothModifier_do( nlEnd(NL_MATRIX); nlEnd(NL_SYSTEM); - if (nlSolveAdvanced(NULL, NL_TRUE)) { + if (nlSolve(NL_TRUE)) { validate_solution(sys, smd->flag, smd->lambda, smd->lambda_border); } } -- cgit v1.2.3