Skip to content

Commit

Permalink
Fix build
Browse files Browse the repository at this point in the history
  • Loading branch information
WrathfulSpatula committed Aug 22, 2024
1 parent 8313a02 commit 0deed8f
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion CMakeLists.txt
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
cmake_minimum_required (VERSION 3.9)
project (Qrack VERSION 9.9.7 DESCRIPTION "High Performance Quantum Bit Simulation" LANGUAGES CXX)
project (Qrack VERSION 9.9.8 DESCRIPTION "High Performance Quantum Bit Simulation" LANGUAGES CXX)

# Installation commands
include (GNUInstallDirs)
Expand Down
2 changes: 1 addition & 1 deletion include/common/qrack_types.hpp
Original file line number Diff line number Diff line change
Expand Up @@ -140,7 +140,7 @@ constexpr real1_x ZERO_R1_X = 0.0f;
constexpr complex_x ONE_CMPLX_X = complex_x(ONE_R1_X, ZERO_R1_X);
constexpr complex_x ZERO_CMPLX_X = complex_x(ZERO_R1_X, ZERO_R1_X);
constexpr complex_x I_CMPLX_X = complex_x(ZERO_R1_X, ONE_R1_X);
const real1_x SQRT1_2_R1_X = (real1_x)M_SQRT1_2;
constexpr real1_x SQRT1_2_R1_X = (real1_x)M_SQRT1_2;

typedef std::shared_ptr<complex> BitOp;

Expand Down

0 comments on commit 0deed8f

Please sign in to comment.