comparison src/grammar.hpp @ 0:add35537fdbb tip

Initial import
author irh <ian.r.hobson@gmail.com>
date Thu, 25 Aug 2011 11:05:55 +0100
parents
children
comparison
equal deleted inserted replaced
-1:000000000000 0:add35537fdbb
1 // Copyright 2011, Ian Hobson.
2 //
3 // This file is part of gpsynth.
4 //
5 // gpsynth is free software: you can redistribute it and/or modify
6 // it under the terms of the GNU General Public License as published by
7 // the Free Software Foundation, either version 3 of the License, or
8 // (at your option) any later version.
9 //
10 // gpsynth is distributed in the hope that it will be useful,
11 // but WITHOUT ANY WARRANTY; without even the implied warranty of
12 // MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
13 // GNU General Public License for more details.
14 //
15 // You should have received a copy of the GNU General Public License
16 // along with gpsynth in the file COPYING.
17 // If not, see http://www.gnu.org/licenses/.
18
19 // The Grammar interface.
20
21 // TODO split out mutation behaviour in to new class
22
23 #pragma once
24
25 #include "synth_graph.hpp"
26
27 struct GrammarInterface {
28
29 virtual void RandomGraph(sg::Graph& graph) const = 0;
30
31 //virtual sg::Graph MutateGraph(const sg::Graph& graph) const = 0;
32
33 virtual void PickCrossoverNodes(const sg::Graph& parent_1,
34 const sg::Graph& parent_2,
35 sg::Vertex* node_1,
36 sg::Vertex* node_2) const = 0;
37
38 virtual bool MutationAddSubTree(sg::Graph& graph) const = 0;
39 virtual bool MutationReplaceSubTree(sg::Graph& graph) const = 0;
40 virtual bool MutationModifyInputs(sg::Graph& graph) const = 0;
41 virtual bool MutationModifyConnections(sg::Graph& graph) const = 0;
42 virtual bool MutationReplaceCommand(sg::Graph& graph) const = 0;
43 virtual bool MutationInsertCommand(sg::Graph& graph) const = 0;
44 };