C++程序  |  29行  |  465 B

#ifndef CLOOG_MATRIX_CONSTRAINTSET_H
#define CLOOG_MATRIX_CONSTRAINTSET_H

#if defined(__cplusplus)
extern "C" 
  {
#endif 

struct cloogconstraintset {
	CloogMatrix M;
};

struct cloogequalities {
	CloogConstraintSet	*constraints;
	int			*types;
};

struct cloogconstraint {
	CloogConstraintSet	*set;
	cloog_int_t		**line;
};

CloogConstraintSet *cloog_constraint_set_from_cloog_matrix(CloogMatrix *M);

#if defined(__cplusplus)
  }
#endif 
#endif /* define _H */