aboutsummaryrefslogtreecommitdiffstats
path: root/src/engine/Mutation.cpp
diff options
context:
space:
mode:
authorDavid Robillard <d@drobilla.net>2011-04-16 19:02:36 +0000
committerDavid Robillard <d@drobilla.net>2011-04-16 19:02:36 +0000
commitbf0d5e8785d4fdb258f907cc092fb3670cff020e (patch)
treed2bbaef3bbaec2b0d30ec8c612f485f4ea5ccf06 /src/engine/Mutation.cpp
parentdf347f2545a8f39d55f7320a2f43b16dc0f2f32a (diff)
downloadmachina-bf0d5e8785d4fdb258f907cc092fb3670cff020e.tar.gz
machina-bf0d5e8785d4fdb258f907cc092fb3670cff020e.tar.bz2
machina-bf0d5e8785d4fdb258f907cc092fb3670cff020e.zip
Squeeze blank lines and delete trailing whitespace.
git-svn-id: http://svn.drobilla.net/lad/trunk/machina@3152 a436a847-0d15-0410-975c-d299462d15a1
Diffstat (limited to 'src/engine/Mutation.cpp')
-rw-r--r--src/engine/Mutation.cpp9
1 files changed, 0 insertions, 9 deletions
diff --git a/src/engine/Mutation.cpp b/src/engine/Mutation.cpp
index 55d5715..a4a5318 100644
--- a/src/engine/Mutation.cpp
+++ b/src/engine/Mutation.cpp
@@ -30,7 +30,6 @@ using namespace std;
namespace Machina {
namespace Mutation {
-
void
Compress::mutate(Machine& machine)
{
@@ -48,7 +47,6 @@ Compress::mutate(Machine& machine)
}
}
-
void
AddNode::mutate(Machine& machine)
{
@@ -83,7 +81,6 @@ AddNode::mutate(Machine& machine)
node->add_edge(boost::shared_ptr<Edge>(new Edge(node, head)));
}
-
void
RemoveNode::mutate(Machine& machine)
{
@@ -94,7 +91,6 @@ RemoveNode::mutate(Machine& machine)
machine.remove_node(node);
}
-
void
AdjustNode::mutate(Machine& machine)
{
@@ -113,7 +109,6 @@ AdjustNode::mutate(Machine& machine)
}
}
-
void
SwapNodes::mutate(Machine& machine)
{
@@ -141,7 +136,6 @@ SwapNodes::mutate(Machine& machine)
b_exit->event()[1] = note_a;
}
-
void
AddEdge::mutate(Machine& machine)
{
@@ -157,7 +151,6 @@ AddEdge::mutate(Machine& machine)
}
}
-
void
RemoveEdge::mutate(Machine& machine)
{
@@ -168,7 +161,6 @@ RemoveEdge::mutate(Machine& machine)
tail->remove_edge(tail->random_edge());
}
-
void
AdjustEdge::mutate(Machine& machine)
{
@@ -181,7 +173,6 @@ AdjustEdge::mutate(Machine& machine)
}
}
-
} // namespace Mutation
} // namespace Machina