3#ifndef poplar_replication_factor_hpp
4#define poplar_replication_factor_hpp
7struct replication_factor {
9 explicit constexpr replication_factor(
unsigned v) : value(v) {}
11 replication_factor &operator++() {
16 bool operator==(
const replication_factor other)
const {
17 return value == other.value;
19 bool operator!=(
const replication_factor other)
const {
20 return value != other.value;
22 bool operator<(
const replication_factor other)
const {
23 return value < other.value;
Poplar classes and functions.
Definition: ArrayRef.hpp:14