diff options
author | Mike Buland <mike@xagasoft.com> | 2012-07-18 01:26:34 -0600 |
---|---|---|
committer | Mike Buland <mike@xagasoft.com> | 2012-07-18 01:26:34 -0600 |
commit | 299640ce5f6499e07c5799f48897ac5a77e72c54 (patch) | |
tree | 47b502fca70dc2fc8a48ae9b3ae813763e98c78e /src/tests | |
parent | a2679e3bc2f407fae6b97908aeebb215c6678ebc (diff) | |
download | libgenetic-299640ce5f6499e07c5799f48897ac5a77e72c54.tar.gz libgenetic-299640ce5f6499e07c5799f48897ac5a77e72c54.tar.bz2 libgenetic-299640ce5f6499e07c5799f48897ac5a77e72c54.tar.xz libgenetic-299640ce5f6499e07c5799f48897ac5a77e72c54.zip |
Persistant multi-threading works perfectly.
It uses the forever-blocking variation of the Bu::SynchroQueue dequeue
to maximize efficiency.
Diffstat (limited to 'src/tests')
-rw-r--r-- | src/tests/maxima/main.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/tests/maxima/main.cpp b/src/tests/maxima/main.cpp index db11f66..176a589 100644 --- a/src/tests/maxima/main.cpp +++ b/src/tests/maxima/main.cpp | |||
@@ -14,7 +14,7 @@ int main( int argc, char *argv[] ) | |||
14 | { | 14 | { |
15 | Bu::Random::seed( time( NULL ) ); | 15 | Bu::Random::seed( time( NULL ) ); |
16 | sio << "Global maxima equation test" << sio.nl | 16 | sio << "Global maxima equation test" << sio.nl |
17 | << " - -1.8*x^4 + 0.86*x^3 + 4.0*x^2 == 3.53518 (approx)" << sio.nl | 17 | << " -1.8*x^4 + 0.86*x^3 + 4.0*x^2 == 3.53518 (approx)" << sio.nl |
18 | << sio.nl; | 18 | << sio.nl; |
19 | 19 | ||
20 | Genetic::ExplicitSimulation ex( | 20 | Genetic::ExplicitSimulation ex( |