diff options
author | olivier gayot <ogayot@free.fr> | 2012-12-13 11:59:30 +0000 |
---|---|---|
committer | olivier gayot <ogayot@free.fr> | 2012-12-13 11:59:30 +0000 |
commit | aba329310979832911cf0f93243e7c6d27a1fc5d (patch) | |
tree | 5f48f828db5bbe84adf5436efa05b6e0378dec1f /solver.h | |
parent | eeb456d954b90c8f1c9247d91afde52d690778ff (diff) |
We do not change the vectors at each reccursion, we create a new one
instead, so we can set the source vectors to const.
Diffstat (limited to 'solver.h')
-rw-r--r-- | solver.h | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -6,6 +6,6 @@ typedef struct { unsigned len; } vect_t; -void solve(vect_t *vect, int result); +void solve(const vect_t *vect, int result); #endif /* SOLVER_H */ |