Skip to content

Commit d1ed22f

Browse files
Dror SegmanDror Segman
authored andcommitted
fix Qmod case in all ipynb files
1 parent 12b7a91 commit d1ed22f

File tree

3 files changed

+5
-5
lines changed

3 files changed

+5
-5
lines changed

community/QClass_2024/Assignments/HW1_QClass2024.ipynb

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@
1010
"\n",
1111
"In this workshop, we will learn how to write quantum models using Qmod. We will be using the Python embedding of Qmod, available as part of the Classiq Python SDK. We will learn basic concepts in the Qmod language, such as functions, operators, quantum variables, and quantum types. We will develop useful building blocks and small algorithms.\n",
1212
"\n",
13-
"The [QMOD language reference](https://docs.classiq.io/latest/qmod-reference/language-reference/) covers these concepts more systematically and includes more examples.\n",
13+
"The [Qmod language reference](https://docs.classiq.io/latest/qmod-reference/language-reference/) covers these concepts more systematically and includes more examples.\n",
1414
"\n",
1515
"This workshop consists of step-by-step exercises. It is structured as follows:\n",
1616
"\n",
@@ -334,11 +334,11 @@
334334
"metadata": {},
335335
"source": [
336336
"### Exercise 5b - Control (\"Quantum If\")\n",
337-
"The `control` operator is the conditional application of some operation, with the condition being that all control qubits are in the state |1>. This notion is generalized in QMOD to other control states, where the condition is specified as a comparison between a quantum numeric variable and a numeric value, similar to a classical `if` statement. Quantum numeric variables are declared with class `QNum`.\n",
337+
"The `control` operator is the conditional application of some operation, with the condition being that all control qubits are in the state |1>. This notion is generalized in Qmod to other control states, where the condition is specified as a comparison between a quantum numeric variable and a numeric value, similar to a classical `if` statement. Quantum numeric variables are declared with class `QNum`.\n",
338338
"\n",
339339
"See also [Numeric types](https://docs.classiq.io/latest/qmod-reference/language-reference/quantum-types/).\n",
340340
"\n",
341-
"In QMOD this generalization is available as a native statement - control.\n",
341+
"In Qmod this generalization is available as a native statement - control.\n",
342342
"\n",
343343
"See also [control](https://docs.classiq.io/latest/qmod-reference/language-reference/operators/).\n",
344344
"\n",

research/rainbow_options/rainbow_options_bruteforce_method.ipynb

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@
77
"source": [
88
"# Rainbow options with bruteforce methodology\n",
99
"\n",
10-
"In this Notebook we will go through the implementation using QMOD for the rainbow option.\n",
10+
"In this Notebook we will go through the implementation using Qmod for the rainbow option.\n",
1111
"This Notebook role is to verify result of different metodology on a smal scale problem, as it grows exponentially in the gate count."
1212
]
1313
},

tutorials/documentation_materials/classiq_101/whats_classiq/whats_classiq.ipynb

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -55,7 +55,7 @@
5555
"\n",
5656
"Here is a high-level breakdown of the steps:\n",
5757
"\n",
58-
"1. [**Design**](#design) - write your quantum algorithm using Classiq's QMOD language. Qmod is built for describing quantum programs without pre determining the implementation details. It is intuitive and powerful.\n",
58+
"1. [**Design**](#design) - write your quantum algorithm using Classiq's Qmod language. Qmod is built for describing quantum programs without pre determining the implementation details. It is intuitive and powerful.\n",
5959
"2. [**Optimize**](#optimization) - Send your algorithm to Classiq's synthesis engine (compiler) that comes up with the optimal quantum program for your algorithm, according to the constraints and preferences you apply.\n",
6060
"3. [**Analyze**](#analysis) the quantum program with the Classiq's visualizer tool in order to view the circuit level implementation of your algorithm.\n",
6161
"4. [**Execute**](#execution) it on Classiq's simulators or on any quantum computer and simulators available via the cloud.\n",

0 commit comments

Comments
 (0)