maxpre 0.2.5

Rust bindings for the (MO-)MaxSAT preprocessor MaxPre
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
#ifndef MAXPP_OUTPUTREADER_HPP
#define MAXPP_OUTPUTREADER_HPP

#include <iostream>
#include <vector>
#include <cstdint>

namespace maxPreprocessor {
class OutputReader {
public:
	int status;
	std::vector<int> trueLits;
	uint64_t ansW;
	
	int readSolution(std::istream& input, int outputFormat);
};
}
#endif