mirror of
https://github.com/bolero-MURAKAMI/Sprout.git
synced 2025-07-04 14:14:09 +00:00
fix complex, rational
This commit is contained in:
parent
cdb10c0fbe
commit
6b3f7ad894
19 changed files with 1568 additions and 1360 deletions
18
sprout/rational/conversion.hpp
Normal file
18
sprout/rational/conversion.hpp
Normal file
|
@ -0,0 +1,18 @@
|
|||
#ifndef SPROUT_RATIONAL_CONVERSION_HPP
|
||||
#define SPROUT_RATIONAL_CONVERSION_HPP
|
||||
|
||||
#include <sprout/config.hpp>
|
||||
#include <sprout/rational/rational.hpp>
|
||||
|
||||
namespace sprout {
|
||||
//
|
||||
// rational_cast
|
||||
//
|
||||
template<typename T, typename IntType>
|
||||
inline SPROUT_CONSTEXPR T
|
||||
rational_cast(sprout::rational<IntType> const& src) {
|
||||
return static_cast<T>(src.numerator()) / static_cast<T>(src.denominator());
|
||||
}
|
||||
} // namespace sprout
|
||||
|
||||
#endif // SPROUT_RATIONAL_CONVERSION_HPP
|
Loading…
Add table
Add a link
Reference in a new issue