numerical-collection-cpp 0.10.0
A collection of algorithms in numerical analysis implemented in C++
|
Namespace of utilities. More...
Namespaces | |
namespace | concepts |
Namespace of C++ concepts. | |
namespace | impl |
Namespace of internal implementations. | |
Classes | |
class | bidirectional_vector |
Class to save data in a sequence which can be extended even toward negative direction. More... | |
class | equal |
Class to compare two values with operator== . More... | |
class | greater |
Class to compare two values with operator> . More... | |
class | greater_equal |
Class to compare two values with operator>= . More... | |
class | iteration_period_checker |
Class to check periods of iterations. More... | |
class | kahan_adder |
Class to add numbers using Kahan summation [14]. More... | |
class | less |
Class to compare two values with operator< . More... | |
class | less_equal |
Class to compare two values with operator<= . More... | |
class | not_equal |
Class to compare two values with operator!= . More... | |
class | object_storage |
Class of storage of objects. More... | |
class | producer_consumer_circular_queue |
Class of a queue using a circular buffer and thread-safe for a single producer thread and a single consumer thread. More... | |
class | source_info_view |
Class to hold information of source codes. More... | |
class | static_stack |
Class of stacks using static arrays. More... | |
class | unsafe_cast |
Class of exception on unsafe casts. More... | |
class | vector |
Class of vectors wrapping std::vector class to use singed integers as indices. More... | |
Typedefs | |
template<typename Key, typename Value, concepts::hash_function< Key > Hash = std::hash<Key>, concepts::comparator< Key, Key > KeyEqual = equal<Key>, typename Allocator = std::allocator<std::pair<Key, Value>>> | |
using | concurrent_map |
Type of concurrent maps. | |
Enumerations | |
enum class | dense_matrix_format_type : std::uint8_t { one_line , multi_line } |
Enumeration of matrix format types. More... | |
enum class | sparse_matrix_format_type : std::uint8_t { one_line , multi_line } |
Enumeration of matrix format types. More... | |
Functions | |
constexpr auto | binary_to_gray_code (std::uint32_t binary) -> std::uint32_t |
Convert an integer from binary to Gray code [30]. | |
constexpr auto | binary_to_gray_code (std::uint64_t binary) -> std::uint64_t |
Convert an integer from binary to Gray code [30]. | |
template<typename Matrix> | |
auto | format_dense_matrix (const Eigen::DenseBase< Matrix > &mat, dense_matrix_format_type type=dense_matrix_format_type::one_line) |
Format a dense matrix. | |
template<typename Vector> | |
auto | format_dense_vector (const Eigen::DenseBase< Vector > &vec) |
Format a dense vector. | |
template<typename... Args> | |
auto | format_errno (fmt::format_string< Args... > format, Args &&... args) -> std::string |
Format a message with error message determined by errno. | |
template<base::concepts::sparse_matrix Matrix> | |
auto | format_sparse_matrix (const Matrix &mat, sparse_matrix_format_type type=sparse_matrix_format_type::one_line) |
Format a sparse matrix. | |
constexpr auto | gray_code_to_binary (std::uint32_t gray_code) -> std::uint32_t |
Convert an integer from Gray code to binary [30]. | |
constexpr auto | gray_code_to_binary (std::uint64_t gray_code) -> std::uint64_t |
Convert an integer from Gray code to binary [30]. | |
template<base::concepts::integral T> | |
constexpr auto | greatest_common_divisor (T a, T b) -> T |
Calculate the greatest common divisor. | |
constexpr auto | hash_string (std::string_view str) noexcept -> std::uint32_t |
Calculate a hash number of a string. | |
template<base::concepts::integral T> | |
constexpr auto | least_common_multiple (T a, T b) -> T |
Calculate the least common multiple. | |
template<base::concepts::integral T> | |
constexpr auto | multiply_safely (T a, T b) -> T |
Multiply two integers with check of overflow. | |
template<base::concepts::integral To, base::concepts::integral From> | |
auto | safe_cast (const From &value) -> To |
Cast safely. | |
Variables | |
constexpr std::size_t | cache_line = hash_tables::utility::cache_line |
Size of cache line. | |
Namespace of utilities.
using num_collect::util::concurrent_map |
Type of concurrent maps.
Key | Type of keys. |
Value | Type of mapped values. |
Hash | Type of the hash function. |
KeyEqual | Type of the function to check equality of keys. |
Allocator | Type of the allocator. |
Definition at line 47 of file concurrent_map.h.
|
strong |
Enumeration of matrix format types.
Enumerator | |
---|---|
one_line | One line. |
multi_line | Multiple lines. |
Definition at line 35 of file format_dense_matrix.h.
|
strong |
Enumeration of matrix format types.
Enumerator | |
---|---|
one_line | One line. |
multi_line | Multiple lines. |
Definition at line 37 of file format_sparse_matrix.h.
|
nodiscardconstexpr |
Convert an integer from binary to Gray code [30].
[in] | binary | Binary. |
Definition at line 32 of file gray_code.h.
|
nodiscardconstexpr |
Convert an integer from binary to Gray code [30].
[in] | binary | Binary. |
Definition at line 43 of file gray_code.h.
|
inlinenodiscard |
Format a dense matrix.
Matrix | Type of the matrix. |
[in] | mat | Matrix. |
[in] | type | Format type. |
Definition at line 99 of file format_dense_matrix.h.
|
inlinenodiscard |
Format a dense vector.
Vector | Type of the vector. |
[in] | vec | Vector. |
Definition at line 72 of file format_dense_vector.h.
|
inlinenodiscard |
Format a message with error message determined by errno.
Args | Types of arguments. |
[in] | format | Format. |
[in] | args | Arguments. |
Definition at line 42 of file format_errno.h.
|
inlinenodiscard |
Format a sparse matrix.
Matrix | Type of the matrix. |
[in] | mat | Matrix. |
[in] | type | Format type. |
Definition at line 101 of file format_sparse_matrix.h.
|
nodiscardconstexpr |
Convert an integer from Gray code to binary [30].
[in] | gray_code | Gray code. |
Definition at line 54 of file gray_code.h.
|
nodiscardconstexpr |
Convert an integer from Gray code to binary [30].
[in] | gray_code | Gray code. |
Definition at line 71 of file gray_code.h.
|
nodiscardconstexpr |
Calculate the greatest common divisor.
T | Type of integers. |
[in] | a | An integer. |
[in] | b | An integer. |
Definition at line 38 of file greatest_common_divisor.h.
|
nodiscardconstexprnoexcept |
Calculate a hash number of a string.
[in] | str | String. |
Definition at line 35 of file hash_string.h.
|
nodiscardconstexpr |
Calculate the least common multiple.
T | Type of integers. |
[in] | a | An integer. |
[in] | b | An integer. |
Definition at line 37 of file least_common_multiple.h.
|
nodiscardconstexpr |
Multiply two integers with check of overflow.
T | Type of integers. |
[in] | a | An integer. |
[in] | b | An integer. |
Definition at line 37 of file multiply_safely.h.
|
inlinenodiscard |
Cast safely.
To | Type to cast to. |
From | Type to cast from. |
[in] | value | Value. |
Definition at line 54 of file safe_cast.h.
|
constexpr |
Size of cache line.
Definition at line 31 of file cache_line.h.