From b9289b950fbfe6d72ca97e5710ab5f8b3fb926af Mon Sep 17 00:00:00 2001 From: David Robillard Date: Fri, 7 Dec 2007 17:27:45 +0000 Subject: Twiddle default node duration (half beat). git-svn-id: http://svn.drobilla.net/lad/machina@964 a436a847-0d15-0410-975c-d299462d15a1 --- src/engine/Problem.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'src/engine') diff --git a/src/engine/Problem.cpp b/src/engine/Problem.cpp index 0db588c..83f9d51 100644 --- a/src/engine/Problem.cpp +++ b/src/engine/Problem.cpp @@ -221,7 +221,7 @@ Problem::initial_population(size_t gene_size, size_t pop_size) const for (uint8_t i=0; i < 128; ++i) { if (_target._counts[i] > 0) { //cout << "Initial note: " << (int)i << endl; - SharedPtr node(new Node(1/4.0)); + SharedPtr node(new Node(1/2.0)); node->set_enter_action(ActionFactory::note_on(i)); node->set_exit_action(ActionFactory::note_off(i)); node->set_selector(true); -- cgit v1.2.1