Continued implementation of PBQP solver: Fixed errors and warnings.
[libfirm] / vector.h
1 #ifndef KAPS_VECTOR_H
2 #define KAPS_VECTOR_H
3
4 #include "vector_t.h"
5
6 /* Copy the given vector. */
7 vector *vector_copy(pbqp *pbqp, vector *v);
8
9 /* sum += summand */
10 void vector_add(vector *sum, vector *summand);
11
12 #endif /* KAPS_VECTOR_H */