alpaqa develop
Nonconvex constrained optimization
Loading...
Searching...
No Matches
dl-flags.hpp
Go to the documentation of this file.
1#pragma once
2
3#include <alpaqa/export.h>
4
5namespace alpaqa {
6
7/// Flags to be passed to `dlopen`.
9 /// `RTLD_GLOBAL` (true) or `RTLD_LOCAL` (false).
10 bool global = false;
11 /// `RTLD_LAZY` (true) or `RTLD_NOW` (false).
12 bool lazy = false;
13 /// `RTLD_NODELETE`
14 bool nodelete = true;
15 /// `RTLD_DEEPBIND`
16 bool deepbind = true;
17
18 operator int() const;
19};
20
21} // namespace alpaqa
constexpr const auto inf
Definition config.hpp:112
Flags to be passed to dlopen.
Definition dl-flags.hpp:8