Opened 9 years ago
Closed 8 years ago
#9026 closed Patches (fixed)
Typo in libs/numeric/odeint/examples/lorenz_point.cpp
| Reported by: | Antony Polukhin | Owned by: | karsten |
|---|---|---|---|
| Milestone: | To Be Determined | Component: | odeint |
| Version: | Boost 1.54.0 | Severity: | Problem |
| Keywords: | Cc: |
Description
Trunk version contains a typo:
point3D operator/(const point3D &p1, const point3D &p2)
{
return point3D( p1.x/p2.x , p1.y/p2.y , p1.z/p1.z );
}
Looks like the p1.z/p1.z must be replaced with p1.z/p2.z (not 100% sure!)
Note:
See TracTickets
for help on using tickets.
