openjij
Framework for the Ising model and QUBO.
Loading...
Searching...
No Matches
compile_config.hpp
Go to the documentation of this file.
1// Copyright 2023 Jij Inc.
2
3// Licensed under the Apache License, Version 2.0 (the "License");
4// you may not use this file except in compliance with the License.
5// You may obtain a copy of the License at
6
7// http://www.apache.org/licenses/LICENSE-2.0
8
9// Unless required by applicable law or agreed to in writing, software
10// distributed under the License is distributed on an "AS IS" BASIS,
11// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
12// See the License for the specific language governing permissions and
13// limitations under the License.
14
15#pragma once
16
18
19namespace openjij {
20
34/**********************************************************
35 default floating point precision on CPU (default: double)
36 **********************************************************/
37using FloatType = double;
38// using FloatType = float;
39// using FloatType = long double;
40
41/**********************************************************
42 default random number engine on CPU (default: xorshift)
43 you may use mersenne twister or your own random number generator.
44 **********************************************************/
46// using RandomEngine = std::mt19937;
47//...
48
49} // namespace openjij
xorshift random generator for c++11 random
Definition random.hpp:39
Definition algorithm.hpp:24
double FloatType
Note:
Definition compile_config.hpp:37