You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: src/algorithms/simulation/quantum_computation_simulation_for_state.cpp
+2-2Lines changed: 2 additions & 2 deletions
Original file line number
Diff line number
Diff line change
@@ -27,7 +27,7 @@
27
27
28
28
namespace {
29
29
/*
30
-
* Prefer the usage of std::chrono::steady_clock instead of std::chrono::sytem_clock since the former cannot decrease (due to time zone changes, etc.) and is most suitable for measuring intervals according to (https://en.cppreference.com/w/cpp/chrono/steady_clock)
30
+
* Prefer the usage of std::chrono::steady_clock instead of std::chrono::system_clock since the former cannot decrease (due to time zone changes, etc.) and is most suitable for measuring intervals according to (https://en.cppreference.com/w/cpp/chrono/steady_clock)
31
31
*/
32
32
using TimeStamp = std::chrono::time_point<std::chrono::steady_clock>;
Copy file name to clipboardExpand all lines: src/algorithms/synthesis/syrec_synthesis.cpp
+1-1Lines changed: 1 addition & 1 deletion
Original file line number
Diff line number
Diff line change
@@ -32,7 +32,7 @@
32
32
33
33
namespace {
34
34
/*
35
-
* Prefer the usage of std::chrono::steady_clock instead of std::chrono::sytem_clock since the former cannot decrease (due to time zone changes, etc.) and is most suitable for measuring intervals according to (https://en.cppreference.com/w/cpp/chrono/steady_clock)
35
+
* Prefer the usage of std::chrono::steady_clock instead of std::chrono::system_clock since the former cannot decrease (due to time zone changes, etc.) and is most suitable for measuring intervals according to (https://en.cppreference.com/w/cpp/chrono/steady_clock)
36
36
*/
37
37
using TimeStamp = std::chrono::time_point<std::chrono::steady_clock>;
// With the current syrec::Properties interface our only option to check that a property does not exist is by using the .get(...) call without providing a fall-back default value.
39
-
// This assertion will however not catch the expected exception in debug builds since an internal assert fails which is not caught by the gtest assertion. Thus we omit the non-existance
39
+
// This assertion will however not catch the expected exception in debug builds since an internal assert fails which is not caught by the gtest assertion. Thus we omit the non-existence
// With the current syrec::Properties interface our only option to check that a property does not exist is by using the .get(...) call without providing a fall-back default value.
90
-
// This assertion will however not catch the expected exception in debug builds since an internal assert fails which is not caught by the gtest assertion. Thus we omit the non-existance
90
+
// This assertion will however not catch the expected exception in debug builds since an internal assert fails which is not caught by the gtest assertion. Thus we omit the non-existence
// With the current syrec::Properties interface our only option to check that a property does not exist is by using the .get(...) call without providing a fall-back default value.
124
-
// This assertion will however not catch the expected exception in debug builds since an internal assert fails which is not caught by the gtest assertion. Thus we omit the non-existance
124
+
// This assertion will however not catch the expected exception in debug builds since an internal assert fails which is not caught by the gtest assertion. Thus we omit the non-existence
// With the current syrec::Properties interface our only option to check that a property does not exist is by using the .get(...) call without providing a fall-back default value.
162
-
// This assertion will however not catch the expected exception in debug builds since an internal assert fails which is not caught by the gtest assertion. Thus we omit the non-existance
162
+
// This assertion will however not catch the expected exception in debug builds since an internal assert fails which is not caught by the gtest assertion. Thus we omit the non-existence
0 commit comments