From: <ole...@us...> - 2013-01-21 20:19:11
|
Revision: 1925 http://opende.svn.sourceforge.net/opende/?rev=1925&view=rev Author: oleh_derevenko Date: 2013-01-21 20:19:04 +0000 (Mon, 21 Jan 2013) Log Message: ----------- Cosmetic: Header inclusion fixed (might cause linking errors) Modified Paths: -------------- trunk/ode/src/fastdot.c trunk/ode/src/fastldlt.c trunk/ode/src/fastlsolve.c trunk/ode/src/fastltsolve.c Modified: trunk/ode/src/fastdot.c =================================================================== --- trunk/ode/src/fastdot.c 2013-01-02 22:15:09 UTC (rev 1924) +++ trunk/ode/src/fastdot.c 2013-01-21 20:19:04 UTC (rev 1925) @@ -22,8 +22,9 @@ /* generated code, do not edit. */ -#include "ode/matrix.h" +#include <ode/common.h> #include "config.h" +#include "matrix.h" dReal _dDot (const dReal *a, const dReal *b, int n) Modified: trunk/ode/src/fastldlt.c =================================================================== --- trunk/ode/src/fastldlt.c 2013-01-02 22:15:09 UTC (rev 1924) +++ trunk/ode/src/fastldlt.c 2013-01-21 20:19:04 UTC (rev 1925) @@ -22,8 +22,9 @@ /* generated code, do not edit. */ -#include "ode/matrix.h" +#include <ode/common.h> #include "config.h" +#include "matrix.h" /* solve L*X=B, with B containing 1 right hand sides. * L is an n*n lower triangular matrix with ones on the diagonal. Modified: trunk/ode/src/fastlsolve.c =================================================================== --- trunk/ode/src/fastlsolve.c 2013-01-02 22:15:09 UTC (rev 1924) +++ trunk/ode/src/fastlsolve.c 2013-01-21 20:19:04 UTC (rev 1925) @@ -22,8 +22,9 @@ /* generated code, do not edit. */ -#include "ode/matrix.h" +#include <ode/common.h> #include "config.h" +#include "matrix.h" /* solve L*X=B, with B containing 1 right hand sides. * L is an n*n lower triangular matrix with ones on the diagonal. Modified: trunk/ode/src/fastltsolve.c =================================================================== --- trunk/ode/src/fastltsolve.c 2013-01-02 22:15:09 UTC (rev 1924) +++ trunk/ode/src/fastltsolve.c 2013-01-21 20:19:04 UTC (rev 1925) @@ -22,8 +22,9 @@ /* generated code, do not edit. */ -#include "ode/matrix.h" +#include <ode/common.h> #include "config.h" +#include "matrix.h" /* solve L^T * x=b, with b containing 1 right hand side. * L is an n*n lower triangular matrix with ones on the diagonal. This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. |