alpaqa
1.0.0a18
Nonconvex constrained optimization
Toggle main menu visibility
Main Page
Related Pages
Topics
Namespaces
Namespace List
Namespace Members
All
a
b
c
d
e
f
g
i
j
l
m
n
o
p
r
s
t
u
v
w
Functions
a
b
c
d
e
f
g
i
j
l
m
n
o
p
r
s
t
u
w
Variables
Typedefs
a
c
d
e
f
i
l
m
p
r
s
t
u
v
Enumerations
Concepts
Classes
Class List
Class Index
Class Hierarchy
Class Members
All
a
b
c
d
e
f
g
h
i
j
k
l
m
n
o
p
q
r
s
t
u
v
w
x
y
z
~
û
ŷ
α
γ
δ
ε
ζ
λ
ν
ρ
σ
τ
φ
ψ
ϵ
Functions
a
b
c
d
e
f
g
h
i
j
l
m
n
o
p
q
r
s
t
u
v
w
x
y
z
~
û
α
ρ
Variables
a
b
c
d
e
f
g
h
i
j
k
l
m
n
o
p
q
r
s
t
u
v
w
x
y
z
ŷ
α
γ
δ
ε
ζ
λ
ν
ρ
σ
τ
φ
ψ
ϵ
Typedefs
a
b
c
d
e
f
g
h
i
l
m
n
o
p
r
s
t
v
w
Enumerations
Enumerator
a
f
i
s
u
Related Symbols
Files
File List
File Members
All
a
c
d
e
f
g
l
m
p
r
s
t
u
w
Functions
a
c
d
e
f
g
l
m
p
r
s
t
w
Variables
Typedefs
Enumerations
Enumerator
Macros
a
c
e
p
u
Examples
Sphinx
•
All
Classes
Namespaces
Files
Functions
Variables
Typedefs
Enumerations
Enumerator
Friends
Macros
Modules
Pages
Concepts
Loading...
Searching...
No Matches
src
alpaqa
include
alpaqa
util
float.hpp
Go to the documentation of this file.
1
#pragma once
2
3
#include <
alpaqa/util/quadmath/quadmath.hpp
>
4
5
#include <cmath>
6
#include <complex>
7
#include <concepts>
8
#include <type_traits>
9
10
namespace
alpaqa
{
11
12
template
<
typename
T>
13
struct
is_complex_float
: std::false_type {};
14
15
template
<std::
float
ing_po
int
T>
16
struct
is_complex_float
<std::complex<T>> : std::true_type {};
17
18
template
<
class
T>
19
inline
constexpr
bool
is_complex_float_v
=
is_complex_float<T>::value
;
20
21
template
<
typename
T>
22
concept
float_or_complex_float
=
23
std::floating_point<T> ||
is_complex_float_v<T>
;
24
25
}
// namespace alpaqa
alpaqa::float_or_complex_float
Definition
float.hpp:22
alpaqa
Definition
anderson.hpp:10
alpaqa::is_complex_float_v
constexpr bool is_complex_float_v
Definition
float.hpp:19
alpaqa::inf
constexpr const auto inf
Definition
config.hpp:112
quadmath.hpp
alpaqa::is_complex_float
Definition
float.hpp:13
Generated on Wed Mar 27 2024 for alpaqa by
1.9.8