From cf18707c086a1b47600c924ae1f33a379d1d3fb2 Mon Sep 17 00:00:00 2001 From: Claudius Holeksa Date: Tue, 23 May 2023 18:32:59 +0200 Subject: nix: Fixed dev install and moved folders --- src/kelunit/distance/meter.h | 20 ------- src/kelunit/time/second.h | 15 ----- src/kelunit/unit.h | 49 ---------------- src/kelunit/unit.tmpl.h | 53 ----------------- src/kelunit/unit_cast.h | 15 ----- src/kelunit/unit_print.h | 55 ------------------ src/kelunit/unit_reduction.h | 133 ------------------------------------------- 7 files changed, 340 deletions(-) delete mode 100644 src/kelunit/distance/meter.h delete mode 100644 src/kelunit/time/second.h delete mode 100644 src/kelunit/unit.h delete mode 100644 src/kelunit/unit.tmpl.h delete mode 100644 src/kelunit/unit_cast.h delete mode 100644 src/kelunit/unit_print.h delete mode 100644 src/kelunit/unit_reduction.h (limited to 'src/kelunit') diff --git a/src/kelunit/distance/meter.h b/src/kelunit/distance/meter.h deleted file mode 100644 index 0d9fb3b..0000000 --- a/src/kelunit/distance/meter.h +++ /dev/null @@ -1,20 +0,0 @@ -#pragma once - -#include "../unit.h" - -#include - -namespace kel { -namespace unit_type { -struct meter{ - static constexpr std::string_view name = "meter"; - static constexpr std::string_view short_name = "m"; -}; -} - -template -using meter = unit>; - -template -using square_meter = unit>; -} diff --git a/src/kelunit/time/second.h b/src/kelunit/time/second.h deleted file mode 100644 index 6dca456..0000000 --- a/src/kelunit/time/second.h +++ /dev/null @@ -1,15 +0,0 @@ -#pragma once - -#include "../unit.h" - -namespace kel { -namespace unit_type { -struct second{ - static constexpr std::string_view name = "second"; - static constexpr std::string_view short_name = "s"; -}; -} - -template -using second = unit>; -} diff --git a/src/kelunit/unit.h b/src/kelunit/unit.h deleted file mode 100644 index a8e8320..0000000 --- a/src/kelunit/unit.h +++ /dev/null @@ -1,49 +0,0 @@ -#pragma once - -#include "unit_reduction.h" - -namespace kel { -template -struct unit_component {}; - -template -class unit; - -template -class unit...> { -public: - using value_type = StorageT; - - unit() = default; - - unit(const unit...>&) = default; - unit(unit...>&&) = default; - - unit...>& operator=(const unit...>&) = default; - unit...>& operator=(unit...>&&) = default; - - unit(const value_type&); - unit(value_type&&); - - unit...>& operator=(const value_type&); - unit...>& operator=(value_type&&); - - unit...> operator+(const unit...>& rhs); - unit...> operator-(const unit...>& rhs); - - template - typename unit_multiplication...>, unit>::type operator*(const unit& rhs); - - template - typename unit_multiplication...>, typename unit_invert::type>::type operator/(const unit& rhs); - - value_type data() const; -private: - value_type value; -}; - -template -using scalar = unit; -} - -#include "unit.tmpl.h" diff --git a/src/kelunit/unit.tmpl.h b/src/kelunit/unit.tmpl.h deleted file mode 100644 index d89e0c1..0000000 --- a/src/kelunit/unit.tmpl.h +++ /dev/null @@ -1,53 +0,0 @@ -#include - -namespace kelun { - -template -unit...>::unit(const value_type& value_): - value{value_}{} - -template -unit...>::unit(value_type&& value_):value{std::move(value_)}{} - -template -unit...>& unit...>::operator=(const typename unit...>::value_type& value_){ - value = value_; - return *this; -} - -template -unit...>& unit...>::operator=(typename unit...>::value_type&& value_){ - value = std::move(value_); - return *this; -} - -template -unit...> unit...>::operator+(const unit...>& rhs){ - return value + rhs.value; -} - -template -unit...> unit...>::operator-(const unit...>& rhs){ - return value - rhs.value; -} - -template -template -typename unit_multiplication...>, unit>::type -unit...>::operator*(const unit& rhs){ - return value * rhs.data(); -} - -template -template -typename unit_multiplication...>, typename unit_invert::type>::type -unit...>::operator/(const unit& rhs){ - typename unit_invert::type rhs_inverted{static_cast(1)/rhs.data()}; - return value * rhs_inverted.data(); -} - -template -typename unit...>::value_type unit...>::data() const { - return value; -} -} diff --git a/src/kelunit/unit_cast.h b/src/kelunit/unit_cast.h deleted file mode 100644 index 8dc2689..0000000 --- a/src/kelunit/unit_cast.h +++ /dev/null @@ -1,15 +0,0 @@ -#pragma once - -#include - -namespace kel { -template -class unit_convert { - static_assert(always_false, "Units can't be converted to each other"); -}; - -template -class unit_convert { - static constexpr factor = static_cast(1); -}; -} diff --git a/src/kelunit/unit_print.h b/src/kelunit/unit_print.h deleted file mode 100644 index 0f3cb72..0000000 --- a/src/kelunit/unit_print.h +++ /dev/null @@ -1,55 +0,0 @@ -#include "./unit.h" - -#include - - -namespace std { -template -inline ostream& operator<<(ostream& o, const kelun::unit_base& ele){ - o< -struct unit_print_impl { - static_assert(is_always_false, "Template type not supported"); -}; - -template -struct unit_print_impl,unit_base...> { - static std::ostream& print(std::ostream& o){ - - unit_base element; - - std::ostream& o_ret = o << element; - - if constexpr (sizeof...(UnitTL) > 0){ - std::ostream& o_ret_next = o_ret << ' ' << '*' << ' '; - return unit_print_impl...>::print(o_ret_next); - } - - return o_ret<<']'; - } -}; -} - -namespace std { - -template -inline ostream& operator<<(ostream& o, const kelun::unit& unit); - -template -inline ostream& operator<<(ostream& o, const kelun::unit...>& unit){ - o << unit.data(); - if constexpr (sizeof...(UnitT) > 0) { - auto& o_ret = o << ' '<<'['; - return kelun::unit_print_impl...>::print(o_ret); - } - return o; -} -} diff --git a/src/kelunit/unit_reduction.h b/src/kelunit/unit_reduction.h deleted file mode 100644 index d9060d2..0000000 --- a/src/kelunit/unit_reduction.h +++ /dev/null @@ -1,133 +0,0 @@ -#pragma once - -#include -#include - -namespace kelun { -template -constexpr bool is_always_false = false; - -template -struct unit_component; - -template -class unit; - -namespace impl { - -template -class unit_matching; - -template -class unit_redux_list { - static_assert(sizeof...(T) == 0, "Template type not supported"); - - using reduced_typed = unit_redux_list<>; -}; - -template -struct unit_redux_list, unit_component...> { - using reduced_type = typename unit_matching, unit_component...>, unit_redux_list<>>::type; -}; - -template -class unit_matching_reduce { -public: - static_assert(is_always_false, "Template type not supported"); -}; - -template -class unit_matching_reduce, unit_redux_list,unit_component...>, unit_redux_list...>> { -public: - static constexpr bool is_same = std::is_same_v; - - using match_reduce_type = typename std::conditional, unit_component>::type; - using match_reduce_unit_redux_list = typename std::conditional...>, unit_redux_list..., unit_component>>::type; - - using value_type = typename unit_matching_reduce...>, match_reduce_unit_redux_list>::value_type; - using unit_redux_list_type = typename unit_matching_reduce...>, match_reduce_unit_redux_list>::unit_redux_list_type; - - static constexpr int64_t value_num = unit_matching_reduce...>, match_reduce_unit_redux_list>::value_num; -}; - -template -class unit_matching_reduce, unit_redux_list<>, unit_redux_list...>> { -public: - using value_type = unit_component; - using unit_redux_list_type = unit_redux_list...>; - - static constexpr int64_t value_num = E; -}; - -template -class unit_matching { - static_assert(is_always_false, "Template type not supported"); -}; - -template -class unit_matching,unit_redux_list...>> { -public: - using type = unit_redux_list...>; - -}; - -template -class unit_matching,unit_component...>, unit_redux_list...>> { -public: - using reduced_value_type = typename unit_matching_reduce, unit_redux_list...>, unit_redux_list<>>::value_type; - using reduced_unit_redux_list_type = typename unit_matching_reduce, unit_redux_list...>, unit_redux_list<>>::unit_redux_list_type; - - static constexpr int64_t reduced_value_num = unit_matching_reduce, unit_redux_list...>, unit_redux_list<>>::value_num; - using reduced_result_unit_redux_list = typename std::conditional...>, unit_redux_list...,reduced_value_type>>::type; - - using type = typename unit_matching::type; -}; - -template -class unit_matching_add_storage { -public: - static_assert(is_always_false, "Template type not supported"); -}; - -template -class unit_matching_add_storage...>, StorageT> { -public: - using type = unit...>; -}; - -} - -template -class unit_reduction { - static_assert(is_always_false, "Template type not supported"); -}; - -template -class unit_reduction...> { -public: - using list_type = typename impl::unit_matching...>, impl::unit_redux_list<>>::type; - using type = typename impl::unit_matching_add_storage::type; -}; - -template -class unit_invert { - static_assert(is_always_false, "Template type not supported"); -}; - -template -class unit_invert...> { -public: - using type = unit...>; -}; - -template -class unit_multiplication{ - static_assert(is_always_false, "Template type not supported"); -}; - -template -class unit_multiplication...>, unit...>> { -public: - using type = typename unit_reduction..., unit_component...>::type; -}; -} -- cgit v1.2.3