/* 
 * File:   penality.h
 * Author: Andréa
 *
 * Created on 13 octobre 2010, 11:30
 */

#ifndef PENALITY_H
#define	PENALITY_H

#ifdef	__cplusplus
extern "C" {
#endif
    
#define EPSILON 0.001
#define MAX_ITER 30

double resolveByPenality(int dimension, double x[], double epsilon, int max_iter);


#ifdef	__cplusplus
}
#endif

#endif	/* PENALITY_H */

