CMakeLists.txt
LICENSE
MANIFEST.in
README.md
pyproject.toml
setup.cfg
setup.py
./v_quantum_annealing/__init__.py
./v_quantum_annealing/_version.py
./v_quantum_annealing/variable_type.py
./v_quantum_annealing/model/__init__.py
./v_quantum_annealing/model/chimera_model.py
./v_quantum_annealing/model/king_graph.py
./v_quantum_annealing/model/model.py
./v_quantum_annealing/sampler/__init__.py
./v_quantum_annealing/sampler/base_sa_sample_hubo.py
./v_quantum_annealing/sampler/csqa_sampler.py
./v_quantum_annealing/sampler/response.py
./v_quantum_annealing/sampler/sa_sampler.py
./v_quantum_annealing/sampler/sampler.py
./v_quantum_annealing/sampler/sqa_sampler.py
./v_quantum_annealing/sampler/chimera_gpu/__init__.py
./v_quantum_annealing/sampler/chimera_gpu/base_gpu_chimera.py
./v_quantum_annealing/sampler/chimera_gpu/gpu_sa_sampler.py
./v_quantum_annealing/sampler/chimera_gpu/gpu_sqa_sampler.py
./v_quantum_annealing/utils/__init__.py
./v_quantum_annealing/utils/benchmark.py
./v_quantum_annealing/utils/cxx_cast.py
./v_quantum_annealing/utils/decorator.py
./v_quantum_annealing/utils/graph_utils.py
./v_quantum_annealing/utils/res_convertor.py
./v_quantum_annealing/utils/time_measure.py
c2isample.egg-info/PKG-INFO
c2isample.egg-info/SOURCES.txt
c2isample.egg-info/dependency_links.txt
c2isample.egg-info/not-zip-safe
c2isample.egg-info/requires.txt
c2isample.egg-info/top_level.txt
cmake/FindGcov.cmake
cmake/FindLcov.cmake
cmake/Findcodecov.cmake
cmake/GenerateDocs.cmake
cmake/PythonAutoDetectOSX.cmake
cmake/llvm-cov-wrapper
external/cimod.cmake
external/eigen.cmake
external/googletest.cmake
external/json.cmake
external/pybind11-json.cmake
include/CMakeLists.txt
include/v_quantum_annealing/algorithm/algorithm.hpp
include/v_quantum_annealing/algorithm/all.hpp
include/v_quantum_annealing/cimod/binary_polynomial_model.hpp
include/v_quantum_annealing/cimod/binary_quadratic_model.hpp
include/v_quantum_annealing/cimod/binary_quadratic_model_dict.hpp
include/v_quantum_annealing/cimod/disable_eigen_warning.hpp
include/v_quantum_annealing/cimod/hash.hpp
include/v_quantum_annealing/cimod/json.hpp
include/v_quantum_annealing/cimod/utilities.hpp
include/v_quantum_annealing/cimod/vartypes.hpp
include/v_quantum_annealing/graph/all.hpp
include/v_quantum_annealing/graph/binary_polynomial_model.hpp
include/v_quantum_annealing/graph/chimera.hpp
include/v_quantum_annealing/graph/converter.hpp
include/v_quantum_annealing/graph/csr_sparse.hpp
include/v_quantum_annealing/graph/dense.hpp
include/v_quantum_annealing/graph/graph.hpp
include/v_quantum_annealing/graph/ising_polynomial_model.hpp
include/v_quantum_annealing/graph/polynomial.hpp
include/v_quantum_annealing/graph/sparse.hpp
include/v_quantum_annealing/graph/square.hpp
include/v_quantum_annealing/graph/json/parse.hpp
include/v_quantum_annealing/result/all.hpp
include/v_quantum_annealing/result/get_solution.hpp
include/v_quantum_annealing/sampler/sa_sampler.hpp
include/v_quantum_annealing/system/all.hpp
include/v_quantum_annealing/system/binary_polynomial_sa_system.hpp
include/v_quantum_annealing/system/classical_ising.hpp
include/v_quantum_annealing/system/classical_ising_polynomial.hpp
include/v_quantum_annealing/system/continuous_time_ising.hpp
include/v_quantum_annealing/system/ising_polynomial_sa_system.hpp
include/v_quantum_annealing/system/k_local_polynomial.hpp
include/v_quantum_annealing/system/sa_system.hpp
include/v_quantum_annealing/system/system.hpp
include/v_quantum_annealing/system/transverse_ising.hpp
include/v_quantum_annealing/system/gpu/chimera_gpu_classical.hpp
include/v_quantum_annealing/system/gpu/chimera_gpu_transverse.hpp
include/v_quantum_annealing/system/gpu/chimera_cuda/index.hpp
include/v_quantum_annealing/system/gpu/chimera_cuda/kernel.cu
include/v_quantum_annealing/system/gpu/chimera_cuda/kernel.hpp
include/v_quantum_annealing/updater/all.hpp
include/v_quantum_annealing/updater/continuous_time_swendsen_wang.hpp
include/v_quantum_annealing/updater/gpu.hpp
include/v_quantum_annealing/updater/k_local.hpp
include/v_quantum_annealing/updater/single_spin_flip.hpp
include/v_quantum_annealing/updater/swendsen_wang.hpp
include/v_quantum_annealing/utility/create_geometric_progression.hpp
include/v_quantum_annealing/utility/disable_eigen_warning.hpp
include/v_quantum_annealing/utility/eigen.hpp
include/v_quantum_annealing/utility/index_type.hpp
include/v_quantum_annealing/utility/insert_or_assign.hpp
include/v_quantum_annealing/utility/memory.hpp
include/v_quantum_annealing/utility/pairhash.hpp
include/v_quantum_annealing/utility/random.hpp
include/v_quantum_annealing/utility/schedule_list.hpp
include/v_quantum_annealing/utility/thres_hold.hpp
include/v_quantum_annealing/utility/type_traits.hpp
include/v_quantum_annealing/utility/union_find.hpp
include/v_quantum_annealing/utility/fmath/fmath.hpp
include/v_quantum_annealing/utility/gpu/cublas.hpp
include/v_quantum_annealing/utility/gpu/handle_error.hpp
include/v_quantum_annealing/utility/gpu/memory.hpp
tests/CMakeLists.txt
tests/__init__.py
tests/test_cxx.py
tests/test_gpu.py
tests/test_hubo.py
tests/test_model.py
tests/test_sampler.py
tests/test_sqa.py
tests/test_utils.py
tests/cxxtest/cxxtest.cpp
tests/cxxtest/polynomial_test.hpp
tests/cxxtest/testcase.hpp
tests/cxxtest/graph/all.hpp
tests/cxxtest/graph/binary_polynomial_model.hpp
tests/cxxtest/graph/ising_polynomial_model.hpp
tests/cxxtest/graph/polynomial.hpp
tests/cxxtest/graph/quadratic.hpp
tests/cxxtest/result/all.hpp
tests/cxxtest/result/result.hpp
tests/cxxtest/sampler/all.hpp
tests/cxxtest/sampler/binary_polynomial_sa_sampler.hpp
tests/cxxtest/sampler/gpu.hpp
tests/cxxtest/sampler/ising_polynomial_sa_sampler.hpp
tests/cxxtest/sampler/k_local.hpp
tests/cxxtest/sampler/polynomial.hpp
tests/cxxtest/sampler/quadraitc.hpp
tests/cxxtest/sampler/swendsen_wang.hpp
tests/cxxtest/system/all.hpp
tests/cxxtest/system/binary_polynomial_sa_system.hpp
tests/cxxtest/system/classical_ising.hpp
tests/cxxtest/system/classical_ising_polynomial.hpp
tests/cxxtest/system/ising_polynomial_sa_system.hpp
tests/cxxtest/system/k_local.hpp
tests/cxxtest/utility/all.hpp
tests/cxxtest/utility/eigen.hpp
tests/cxxtest/utility/gpu.hpp
tests/cxxtest/utility/union_find.hpp
v_quantum_annealing/__init__.py
v_quantum_annealing/_version.py
v_quantum_annealing/compile_config.hpp
v_quantum_annealing/declare.hpp
v_quantum_annealing/main.cpp
v_quantum_annealing/variable_type.py
v_quantum_annealing/__pycache__/__init__.cpython-310.pyc
v_quantum_annealing/model/__init__.py
v_quantum_annealing/model/chimera_model.py
v_quantum_annealing/model/king_graph.py
v_quantum_annealing/model/model.py
v_quantum_annealing/model/__pycache__/__init__.cpython-310.pyc
v_quantum_annealing/model/__pycache__/chimera_model.cpython-310.pyc
v_quantum_annealing/sampler/__init__.py
v_quantum_annealing/sampler/base_sa_sample_hubo.py
v_quantum_annealing/sampler/csqa_sampler.py
v_quantum_annealing/sampler/response.py
v_quantum_annealing/sampler/sa_sampler.py
v_quantum_annealing/sampler/sampler.py
v_quantum_annealing/sampler/sqa_sampler.py
v_quantum_annealing/sampler/chimera_gpu/__init__.py
v_quantum_annealing/sampler/chimera_gpu/base_gpu_chimera.py
v_quantum_annealing/sampler/chimera_gpu/gpu_sa_sampler.py
v_quantum_annealing/sampler/chimera_gpu/gpu_sqa_sampler.py
v_quantum_annealing/utils/__init__.py
v_quantum_annealing/utils/benchmark.py
v_quantum_annealing/utils/cxx_cast.py
v_quantum_annealing/utils/decorator.py
v_quantum_annealing/utils/graph_utils.py
v_quantum_annealing/utils/res_convertor.py
v_quantum_annealing/utils/time_measure.py
v_quantum_annealing/v_quantum_annealing.egg-info/PKG-INFO
v_quantum_annealing/v_quantum_annealing.egg-info/SOURCES.txt
v_quantum_annealing/v_quantum_annealing.egg-info/dependency_links.txt
v_quantum_annealing/v_quantum_annealing.egg-info/not-zip-safe
v_quantum_annealing/v_quantum_annealing.egg-info/requires.txt
v_quantum_annealing/v_quantum_annealing.egg-info/top_level.txt