2
0
mirror of https://github.com/boostorg/odeint.git synced 2026-01-19 04:22:12 +00:00

Update lorenz_point.cpp

This commit is contained in:
headmyshoulder
2015-10-22 07:53:34 +02:00
parent d0bbbe19fa
commit 98080afe5a

View File

@@ -58,7 +58,7 @@ public:
// only required for steppers with error control
point3D operator/( const point3D &p1 , const point3D &p2 )
{
return point3D( p1.x/p2.x , p1.y/p2.y , p1.z/p1.z );
return point3D( p1.x/p2.x , p1.y/p2.y , p1.z/p2.z );
}
point3D abs( const point3D &p )