-
Notifications
You must be signed in to change notification settings - Fork 1.2k
Package qcaml.0.1.1 #28813
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Closed
+61
−0
Closed
Package qcaml.0.1.1 #28813
Changes from all commits
Commits
File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1,61 @@ | ||
| opam-version: "2.0" | ||
| synopsis: "Experimental OCaml library for quantum computing simulation" | ||
| description: """\ | ||
| QCaml is a lightweight OCaml library for experimenting with quantum states, | ||
| gates and measurements. It provides tools for learning quantum computing | ||
| concepts and visualizing qubit states on the Bloch sphere. | ||
|
|
||
| Features: | ||
| - Single qubit state representation with complex amplitudes | ||
| - Fundamental quantum gates (Hadamard, Pauli-X/Y/Z) | ||
| - Quantum measurements with probabilistic state collapse | ||
| - Interactive Bloch sphere visualization using OpenGL/GLUT | ||
| - Comprehensive test suite""" | ||
| maintainer: "[email protected]" | ||
| authors: "Elias GAUTHIER" | ||
| license: "Apache-2.0" | ||
| tags: [ | ||
| "quantum" | ||
| "computing" | ||
| "simulation" | ||
| "qubits" | ||
| "gates" | ||
| "visualization" | ||
| "bloch-sphere" | ||
| ] | ||
| homepage: "https://github.com/elias-utf8/qcaml" | ||
| doc: "https://elias-utf8.github.io/qcaml/" | ||
| bug-reports: "https://github.com/elias-utf8/qcaml/issues" | ||
| depends: [ | ||
| "ocaml" {>= "5.2"} | ||
| "dune" {>= "2.9" & >= "2.9"} | ||
| "dune-configurator" | ||
| "conf-freeglut" | ||
| "alcotest" {with-test} | ||
| "odoc" {with-doc} | ||
| "bisect_ppx" {with-test} | ||
elias-utf8 marked this conversation as resolved.
Show resolved
Hide resolved
|
||
| ] | ||
| build: [ | ||
| ["dune" "subst"] {dev} | ||
| [ | ||
| "dune" | ||
| "build" | ||
| "-p" | ||
| name | ||
| "-j" | ||
| jobs | ||
| "--promote-install-files=false" | ||
| "@install" | ||
| "@runtest" {with-test} | ||
| "@doc" {with-doc} | ||
| ] | ||
| ["dune" "install" "-p" name "--create-install-files" name] | ||
| ] | ||
| dev-repo: "git+https://github.com/elias-utf8/qcaml.git" | ||
| url { | ||
| src: "https://github.com/elias-utf8/qcaml/archive/refs/tags/v0.1.2.tar.gz" | ||
|
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. There's also something with the version. |
||
| checksum: [ | ||
| "md5=21ea66b25de391fff8c6bbc5a0481dd3" | ||
| "sha512=2f51ffbec81457559fdd36590469dc4933bc4ccb0ccae9e56e468369964c4aa840776d0c0aa30bef67050799b2c129ec7ec9668fc6ba4ab6b41ebc6bceb2b01a" | ||
| ] | ||
| } | ||
Oops, something went wrong.
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
This bound needs adjustment.
On the lower bounds search
- downgrade dune 3.20.2 to 3.6.2 [required by qcaml]changes it from compiling cleanly to failing with
I suggest just recreating locally and starting off a bisection, starting off somewhere in the middle, e.g., with
opam install dune.3.17.2and seeing if things compile cleanly with each investigated version.