Sha256: db10e125499d3f5a8e4bcb97f9cd6758d8549e57e5d2bf685984b548ee5cf5e9
Contents?: true
Size: 906 Bytes
Versions: 4
Compression:
Stored size: 906 Bytes
Contents
/* * * Copyright (C) 2015 Jason Gowan * All rights reserved. * * This software may be modified and distributed under the terms * of the BSD license. See the LICENSE file for details. */ #ifndef DITHER_H_ #define DITHER_H_ #include <string> #include "ipog.h" extern "C" { typedef void* ipog_handle; ipog_handle dither_ipog_new(const unsigned int); void dither_ipog_add_parameter_int(ipog_handle, const int, const int[], const int); void dither_ipog_run(ipog_handle); int dither_ipog_size(ipog_handle); void dither_ipog_display_raw_solution(ipog_handle); void dither_ipog_fill(ipog_handle, int[]); void dither_ipog_delete(ipog_handle self); void dither_ipog_add_constraint(ipog_handle self, const int[], const int); void dither_ipog_add_previously_tested(ipog_handle self, const int[], const int); } #endif // DITHER_H_
Version data entries
4 entries across 4 versions & 1 rubygems
Version | Path |
---|---|
dither-0.2.7-java | ext/dither/dither.h |
dither-0.2.7 | ext/dither/dither.h |
dither-0.2.6 | ext/dither/dither.h |
dither-0.2.6-java | ext/dither/dither.h |