1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27
|
/****************************************************************\
* *
* C4 dynamic programming library - code for optimal pairs *
* *
* Guy St.C. Slater.. mailto:guy@ebi.ac.uk *
* Copyright (C) 2000-2008. All Rights Reserved. *
* *
* This source code is distributed under the terms of the *
* GNU General Public License, version 3. See the file COPYING *
* or http://www.gnu.org/licenses/gpl.txt for details *
* *
* If you use this code, please keep this notice intact. *
* *
\****************************************************************/
#include <glib.h>
#include "opair.h"
int Argument_main(Argument *arg){
g_warning("Test not implemented [%s]", __FILE__);
return 0;
}
/* FIXME: implement this test
*/
|