This documentation is automatically generated by competitive-verifier/competitive-verifier
#include "tools/rounding_mode.hpp"
enum class rounding_mode {
ceiling,
down,
floor,
half_down,
half_even,
half_up,
up
};
It is a rounding mode for tools::bigdecimal
.
ceiling
down
floor
half_down
half_even
half_up
up
#ifndef TOOLS_ROUNDING_MODE_HPP
#define TOOLS_ROUNDING_MODE_HPP
namespace tools {
enum class rounding_mode {
ceiling,
down,
floor,
half_down,
half_even,
half_up,
up
};
}
#endif
#line 1 "tools/rounding_mode.hpp"
namespace tools {
enum class rounding_mode {
ceiling,
down,
floor,
half_down,
half_even,
half_up,
up
};
}