@uuidna/qpu 0.1.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/CITATION.cff +11 -0
- package/LICENSE +24 -0
- package/README.md +1133 -0
- package/dist/quantum/processing/unit/index.d.ts +32017 -0
- package/dist/quantum/processing/unit/index.js +9492 -0
- package/install.json +13 -0
- package/mcp.json +871 -0
- package/package.json +73 -0
- package/src/quantum/processing/unit/index.lean +130 -0
- package/worker.js +2 -0
- package/wrangler.toml +26 -0
package/CITATION.cff
ADDED
|
@@ -0,0 +1,11 @@
|
|
|
1
|
+
cff-version: 1.2.0
|
|
2
|
+
message: Cite the running quantum circuit and its Lean proof.
|
|
3
|
+
title: QPU
|
|
4
|
+
type: software
|
|
5
|
+
authors:
|
|
6
|
+
- family-names: Rouschev
|
|
7
|
+
given-names: Tsvetan
|
|
8
|
+
email: ceccec@psg.bg
|
|
9
|
+
url: https://qpu.uuidna.com
|
|
10
|
+
repository-code: https://github.com/uuidna/qpu
|
|
11
|
+
license: CC-BY-NC-ND-4.0
|
package/LICENSE
ADDED
|
@@ -0,0 +1,24 @@
|
|
|
1
|
+
Creative Commons Attribution-NonCommercial-NoDerivatives 4.0 International (CC BY-NC-ND 4.0)
|
|
2
|
+
|
|
3
|
+
Copyright (c) Tsvetan Rouschev (ceccec@psg.bg)
|
|
4
|
+
|
|
5
|
+
This work — @uuidna/qpu, qpu.uuidna.com, its source, and its documentation — is licensed under the
|
|
6
|
+
Creative Commons Attribution-NonCommercial-NoDerivatives 4.0 International License.
|
|
7
|
+
|
|
8
|
+
You are free to:
|
|
9
|
+
- Share — copy and redistribute the material in any medium or format, unchanged.
|
|
10
|
+
|
|
11
|
+
Under the following terms:
|
|
12
|
+
- Attribution — You must give appropriate credit (Tsvetan Rouschev), provide a link to the
|
|
13
|
+
license, and indicate if changes were made.
|
|
14
|
+
- NonCommercial — You may not use the material for commercial purposes without a commercial
|
|
15
|
+
licence from the author. https://revolut.me/ceccec
|
|
16
|
+
- NoDerivatives — If you remix, transform, or build upon the material, you may not distribute
|
|
17
|
+
the modified material.
|
|
18
|
+
|
|
19
|
+
No warranties are given. The license may not give you all of the permissions necessary for your
|
|
20
|
+
intended use.
|
|
21
|
+
|
|
22
|
+
SPDX-License-Identifier: CC-BY-NC-ND-4.0
|
|
23
|
+
Full license text: https://creativecommons.org/licenses/by-nc-nd/4.0/legalcode
|
|
24
|
+
Summary: https://creativecommons.org/licenses/by-nc-nd/4.0/
|