11 lines
230 B
C++
11 lines
230 B
C++
#include "fesa/build_info.hpp"
|
|
|
|
namespace fesa {
|
|
|
|
std::string_view solverVersion() noexcept {
|
|
// Keep this value stable until a reviewed solver release changes the metadata contract.
|
|
return "0.1.0";
|
|
}
|
|
|
|
} // namespace fesa
|