Skip to content

Commit

Permalink
Merge pull request #54 from oqc-community/jd/forq
Browse files Browse the repository at this point in the history
Forq circuit solver prototype
  • Loading branch information
chemix-lunacy authored Oct 14, 2024
2 parents c0d465b + cf00164 commit e72a7d0
Show file tree
Hide file tree
Showing 15 changed files with 2,910 additions and 1,120 deletions.
4 changes: 3 additions & 1 deletion src/rasqal/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
[package]
authors = ["John Dumbell"]
name = "rasqal"
version = "0.1.6"
version = "0.1.7"
edition = "2021"
license = "BSD-3-Clause"
description = ""
Expand Down Expand Up @@ -32,6 +32,8 @@ env_logger = "0.9.3"
ctor = "0.2.2"
num = "0.4.0"
bitflags = "2.4.0"
ndarray = "0.15.6"
num-complex = "0.4.6"

[lib]
crate-type = ["cdylib"]
Expand Down
2 changes: 2 additions & 0 deletions src/rasqal/rasqal/_native.pyi
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,8 @@ from .adaptors import RuntimeAdaptor

DEFAULT_LOG_FILE = ""

DEFAULT_LOG_FOLDER = ""

def initialize_file_logger(file_path: str):
pass

Expand Down
1 change: 1 addition & 0 deletions src/rasqal/rasqal/utils.py
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,7 @@
initialize_file_logger,
initialize_commandline_logger,
DEFAULT_LOG_FILE, # noqa
DEFAULT_LOG_FOLDER, # noqa
)


Expand Down
Loading

0 comments on commit e72a7d0

Please # to comment.