Storm
A Modern Probabilistic Model Checker
Loading...
Searching...
No Matches
JsonForward.h
Go to the documentation of this file.
1#pragma once
2#include <map>
3#include <string>
4#include <vector>
5#include "nlohmann/json_fwd.hpp"
6
7namespace storm {
8
9template<typename ValueType>
10using json = nlohmann::basic_json<std::map, std::vector, std::string, bool, int64_t, uint64_t, ValueType>;
11
17template<typename ValueType>
19
26template<typename ValueType>
27std::string dumpJson(storm::json<ValueType> const& j, bool compact = false);
28
29} // namespace storm
LabParser.cpp.
Definition cli.cpp:18
bool isJsonNumberExportAccurate(storm::json< ValueType > const &j)
nlohmann::basic_json< std::map, std::vector, std::string, bool, int64_t, uint64_t, ValueType > json
Definition JsonForward.h:10
std::string dumpJson(storm::json< ValueType > const &j, bool compact)
Dumps the given json object, producing a String.