X-Git-Url: https://ruin.nu/git/?a=blobdiff_plain;f=src%2Fgenesorter.cpp;fp=src%2Fgenesorter.cpp;h=5f8699c62d0991f504520713d18a517fc555a01f;hb=d0abe1592fcbb10f4ac303e7b66c384624d4d439;hp=0000000000000000000000000000000000000000;hpb=5cdc3cbecb3bed52346f262dc8d0d0c88e8dba17;p=germs.git diff --git a/src/genesorter.cpp b/src/genesorter.cpp new file mode 100644 index 0000000..5f8699c --- /dev/null +++ b/src/genesorter.cpp @@ -0,0 +1,35 @@ +/*************************************************************************** + * Copyright (C) 2006 by Michael Andreen * + * andreen@student.chalmers.se * + * * + * This program is free software; you can redistribute it and/or modify * + * it under the terms of the GNU General Public License as published by * + * the Free Software Foundation; either version 2 of the License, or * + * (at your option) any later version. * + * * + * This program is distributed in the hope that it will be useful, * + * but WITHOUT ANY WARRANTY; without even the implied warranty of * + * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the * + * GNU General Public License for more details. * + * * + * You should have received a copy of the GNU General Public License * + * along with this program; if not, write to the * + * Free Software Foundation, Inc., * + * 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA * + ***************************************************************************/ + +#include "genesorter.h" + +#include "geneorder.h" +#include "sortaction.h" +#include "reverseaction.h" + +using namespace std; + +GeneSorter::ActionList GeneSorter::sort(const GeneOrder& go1){ + return ActionList(); +} + +GeneSorter::ActionList GeneSorter::safeActions(const GeneOrder& go1){ + return ActionList(); +}