From 3efa74c0a59cfdf94f31ba4d7b50a9b5e3b737b0 Mon Sep 17 00:00:00 2001
From: Mathieu Lacage The int64x64_t type implements all the C++ arithmetic operators to behave like one of the
+C++ native types. It is a 64.64 integer type which means that it is a 128bit integer type with
+64 bits of fractional precision. The existing Time type is now automatically convertible to
+int64x64_t to allow arbitrarily complex arithmetic operations on the content of Time
+objects. The implementation of int64x64_t is based on the previously-existing
+HighPrecision type and supercedes it.
+New API:
+
Changes to existing API:
@@ -83,6 +91,19 @@ See the documentation for details.
renamed to GenericPhy interface and moved to a new file
generic-phy.h. The related variables and methods have been renamed accordingly.
The Scalar type has been removed. Typical code such as: +
+Time tmp = ...; +Time result = tmp * Scalar (5); ++Can now be rewritten as: +
+Time tmp = ...; +Time result = Time (tmp * 5); ++ +