Program Listing for File definitions.hpp¶
↰ Return to documentation for file (fwdpp/ts/definitions.hpp)
#ifndef FWDPP_TS_DEFINITIONS_HPP
#define FWDPP_TS_DEFINITIONS_HPP
#include <cstdint>
namespace fwdpp
{
namespace ts
{
using table_index_t = std::int32_t;
constexpr table_index_t NULL_INDEX = -1;
constexpr std::int8_t default_ancestral_state = 0;
constexpr std::int8_t default_derived_state = 1;
} // namespace ts
} // namespace fwdpp
#endif