Kryptostack
algo.h
Go to the documentation of this file.
1
17#pragma once
18
19#include <string>
20
21
24namespace algo {
25
36 __int128 xgcd( __int128 p_a, __int128 p_b, __int128 & p_s, __int128 & p_t );
37
42 bool isint128( std::string p_str );
43
44} // namespace algo
Collection of numeric algorithms.
Definition: algo.h:24
__int128 xgcd(__int128 p_a, __int128 p_b, __int128 &p_s, __int128 &p_t)
Extended Euclidean algorithm.
Definition: algo.cpp:24
bool isint128(std::string p_str)
Is it a 128 bit integer.
Definition: algo.cpp:59