30 lines
969 B
Zig
30 lines
969 B
Zig
// SPDX-License-Identifier: MIT
|
|
// Copyright (c) 2015-2020 Zig Contributors
|
|
// This file is part of [zig](https://ziglang.org/), which is MIT licensed.
|
|
// The MIT license requires this copyright notice to be included in all copies
|
|
// and substantial portions of the software.
|
|
const std = @import("../std.zig");
|
|
const assert = std.debug.assert;
|
|
|
|
pub const Rational = @import("big/rational.zig").Rational;
|
|
pub const int = @import("big/int.zig");
|
|
pub const Limb = usize;
|
|
pub const DoubleLimb = std.meta.IntType(false, 2 * Limb.bit_count);
|
|
pub const SignedDoubleLimb = std.meta.IntType(true, DoubleLimb.bit_count);
|
|
pub const Log2Limb = std.math.Log2Int(Limb);
|
|
|
|
comptime {
|
|
assert(std.math.floorPowerOfTwo(usize, Limb.bit_count) == Limb.bit_count);
|
|
assert(Limb.bit_count <= 64); // u128 set is unsupported
|
|
assert(Limb.is_signed == false);
|
|
}
|
|
|
|
test "" {
|
|
_ = int;
|
|
_ = Rational;
|
|
_ = Limb;
|
|
_ = DoubleLimb;
|
|
_ = SignedDoubleLimb;
|
|
_ = Log2Limb;
|
|
}
|