Sophie

Sophie

distrib > Mandriva > 2011.0 > i586 > by-pkgid > 6e956554e310612c31902361e69efc24 > files > 147

cbc-debug-2.4.0-2mdv2011.0.i586.rpm

/* $Id: Cbc_ampl.h 1271 2009-11-05 15:57:25Z forrest $ */
// Copyright (C) 2006, International Business Machines
// Corporation and others.  All Rights Reserved.
#ifndef AmplInterface_H
#define AmplInterface_H
typedef struct
{
  int numberRows;
  int numberColumns;
  int numberBinary;
  int numberIntegers; /* non binary */
  int numberSos;
  int numberElements;
  int numberArguments;
  int problemStatus;
  double direction;
  double offset;
  double objValue;
  double * objective;
  double * rowLower;
  double * rowUpper;
  double * columnLower;
  double * columnUpper;
  int * starts;
  int * rows;
  double * elements;
  double * primalSolution;
  double * dualSolution;
  int * columnStatus;
  int * rowStatus;
  int * priorities;
  int * branchDirection;
  double * pseudoDown;
  double * pseudoUp;
  char * sosType;
  int * sosPriority;
  int * sosStart;
  int * sosIndices;
  double * sosReference;
  int * cut;
  int * special;
  char ** arguments;
  char buffer[300];
  int logLevel;
  int nonLinear;
} ampl_info;
#ifdef __cplusplus
extern "C"{
#endif
  /* return nonzero if bad */
  int readAmpl(ampl_info * info,int argc, char ** argv,
	       void ** coinModel);
  /* frees some input arrays */
  void freeArrays1(ampl_info * info);
  /* frees rest */
  void freeArrays2(ampl_info * info);
  /* frees fake arguments */
  void freeArgs(ampl_info * info);
  /* writes ampl stuff */
  void writeAmpl(ampl_info * info);
  /* objective precision */
  int ampl_obj_prec();
#ifdef __cplusplus
          }
#endif
#endif