X-Git-Url: http://nsz.repo.hu/git/?a=blobdiff_plain;f=ir%2Fbe%2Fbecopyilp1.c;h=86edd93026cbecaef334be0f3254c030f64c5a38;hb=5883ec1b985b9f77aa195c8ccee098faf15ab175;hp=5dae7a6f6df1a2eddc3a1b0344b46e4c393cb842;hpb=87d3e7eba011a02e25e216fc299dd41f82d6e30d;p=libfirm diff --git a/ir/be/becopyilp1.c b/ir/be/becopyilp1.c index 5dae7a6f6..86edd9302 100644 --- a/ir/be/becopyilp1.c +++ b/ir/be/becopyilp1.c @@ -1,20 +1,30 @@ -/** - * Author: Daniel Grund - * Date: 17.05.2005 - * Copyright: (c) Universitaet Karlsruhe - * Licence: This file protected by GPL - GNU GENERAL PUBLIC LICENSE. - * CVS-ID: $Id$ +/* + * Copyright (C) 1995-2008 University of Karlsruhe. All right reserved. + * + * This file is part of libFirm. + * + * This file may be distributed and/or modified under the terms of the + * GNU General Public License version 2 as published by the Free Software + * Foundation and appearing in the file LICENSE.GPL included in the + * packaging of this file. + * + * Licensees holding valid libFirm Professional Edition licenses may use + * this file in accordance with the libFirm Commercial License. + * Agreement provided with the Software. * - * ILP formalization using: - * - 2 classes of vars: Nodes- and optimality variables. - * - Clique constraints - * - Path constraints - * - Clique path constraints + * This file is provided AS IS with NO WARRANTY OF ANY KIND, INCLUDING THE + * WARRANTY OF DESIGN, MERCHANTABILITY AND FITNESS FOR A PARTICULAR + * PURPOSE. */ -#ifdef HAVE_CONFIG_H +/** + * @file + * @brief ILP formalization using: ??? + * @author Daniel Grund + * @date 17.05.2005 + * @version $Id$ + */ #include "config.h" -#endif /* HAVE_CONFIG_H */ #ifdef WITH_ILP @@ -23,27 +33,21 @@ #define DEBUG_LVL 1 typedef struct _my_env_t { - int foo; + int dummy; } my_env_t; -static void ilp1_build(ilp_env_t *ienv) { - ienv->lp = new_lpp(ienv->co->name, lpp_minimize); - -} - -static void ilp1_apply(ilp_env_t *ienv) { - -} - -int co_solve_ilp1(copy_opt_t *co, double time_limit) { +int co_solve_ilp1(copy_opt_t *co, double time_limit) +{ + (void) co; + (void) time_limit; return 1; } - #else /* WITH_ILP */ -static void only_that_you_can_compile_without_WITH_ILP_defined(void) { +static inline void only_that_you_can_compile_without_WITH_ILP_defined(void) +{ } #endif /* WITH_ILP */