~ubuntu-branches/ubuntu/wily/gargoyle-free/wily-proposed

« back to all changes in this revision

Viewing changes to terps/nitfol/solve.h

  • Committer: Bazaar Package Importer
  • Author(s): Sylvain Beucler
  • Date: 2009-09-11 20:09:43 UTC
  • Revision ID: james.westby@ubuntu.com-20090911200943-idgzoyupq6650zpn
Tags: upstream-2009-08-25
ImportĀ upstreamĀ versionĀ 2009-08-25

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
/* This is a Cfunctions (version 0.24) generated header file.
 
2
   Cfunctions is a free program for extracting headers from C files.
 
3
   Get Cfunctions from `http://www.hayamasa.demon.co.uk/cfunctions'. */
 
4
 
 
5
/* This file was generated with:
 
6
`cfunctions -i solve.c' */
 
7
#ifndef CFH_SOLVE_H
 
8
#define CFH_SOLVE_H
 
9
 
 
10
/* From `solve.c': */
 
11
typedef struct cycleequation cycleequation;
 
12
struct cycleequation {
 
13
  cycleequation *next;
 
14
  
 
15
  int *var;
 
16
  const int *min;
 
17
  int xcoefficient;
 
18
  int ycoefficient;
 
19
 
20
;
 
21
void automap_add_cycle (cycleequation *cycle );
 
22
void automap_delete_cycles (void);
 
23
void automap_cycle_elimination (void);
 
24
void automap_cycles_fill_values (void);
 
25
 
 
26
#endif /* CFH_SOLVE_H */