Skip to content

Commit 7546c63

Browse files
committed
Fix Aqua Community links
1 parent 6991e43 commit 7546c63

File tree

5 files changed

+22
-24
lines changed

5 files changed

+22
-24
lines changed

aqua/bernstein_vazirani.ipynb

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -31,7 +31,7 @@
3131
"cell_type": "markdown",
3232
"metadata": {},
3333
"source": [
34-
"The Bernstein-Vazirani algorithm is explained in more detail in the corresponding notebook located in the directory `community/algorithms`. We can experiment with it in Aqua by feeding it oracles created using truth tables. For example, we can create a `TruthTableOracle` instance as follows."
34+
"The Bernstein-Vazirani algorithm is explained in more detail in the corresponding notebook located in the directory `algorithms`. We can experiment with it in Aqua by feeding it oracles created using truth tables. For example, we can create a `TruthTableOracle` instance as follows."
3535
]
3636
},
3737
{

aqua/deutsch_jozsa.ipynb

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -31,7 +31,7 @@
3131
"cell_type": "markdown",
3232
"metadata": {},
3333
"source": [
34-
"The [Deutsch-Jozsa algorithm](https://en.wikipedia.org/wiki/Deutsch-Jozsa_algorithm) is explained in more detail in the corresponding notebook located in the directory `community/algorithms`. We can experiment with it in Aqua by feeding it oracles created using truth tables. For example, we can create a `TruthTableOracle` instance as follows."
34+
"The [Deutsch-Jozsa algorithm](https://en.wikipedia.org/wiki/Deutsch-Jozsa_algorithm) is explained in more detail in the corresponding notebook located in the directory `algorithms`. We can experiment with it in Aqua by feeding it oracles created using truth tables. For example, we can create a `TruthTableOracle` instance as follows."
3535
]
3636
},
3737
{

aqua/index.ipynb

Lines changed: 18 additions & 20 deletions
Original file line numberDiff line numberDiff line change
@@ -21,27 +21,25 @@
2121
"along with some Python code files too.\n",
2222
"\n",
2323
"The folder [input_files](general/input_files) contains a number of example JSON input files that can be loaded \n",
24-
"and run by the Aqua\n",
25-
"[GUI](https://github.com/Qiskit/aqua/blob/master/README.md#gui) or\n",
26-
"[command line](https://github.com/Qiskit/aqua/blob/master/README.md#command-line) tool.\n",
24+
"and run by the Qiskit Aqua\n",
25+
"[GUI or command line](https://github.com/Qiskit/qiskit-aqua-interfaces) tool.\n",
2726
"\n",
2827
"The following notebooks are noted:\n",
2928
"\n",
30-
"* [Using Aqua algorithms, a how to guide](general/vqe.ipynb)\n",
31-
"* [Using Aqua's quantum evolution functionality](general/evolution.ipynb)\n",
32-
"* [The EOH (Evolution of Hamiltonian) Algorithm](general/eoh.ipynb)\n",
33-
"* [Variaitonal Eigensolver + Quantum Phase Estimation](general/vqe2iqpe.ipynb)\n",
29+
"* [Using Aqua algorithms, a how to guide](algorithm_introduction_with_vqe.ipynb)\n",
30+
"* [Using Aqua's quantum evolution functionality](evolution.ipynb)\n",
31+
"* [The EOH (Evolution of Hamiltonian) Algorithm](eoh.ipynb)\n",
32+
"* [Variaitonal Eigensolver + Quantum Phase Estimation](vqe2iqpe.ipynb)\n",
3433
"\n",
3534
"The repository here may be viewed for the\n",
36-
"[full listing](https://github.com/Qiskit/qiskit-tutorial/tree/master/community/aqua/general).\n",
35+
"[full listing](./).\n",
3736
"\n",
3837
"### 2. [Qiskit Chemistry](../chemistry/)<a id='chemistry'></a>\n",
3938
"\n",
4039
"This folder contains some Jupyter Notebook examples showing how to run algorithms in Qiskit Chemistry along with some Python code files too. There are also some .hdf5 files containing saved molecular data that can be used in experiments, see the main Qiskit Chemistry documentation for more information on the HDF5 driver and .hdf5 files. \n",
4140
"\n",
42-
"The folder [input_files](../chemistry/input_files) contains a number of example input files that can be loaded and run by the Qiskit Chemistry\n",
43-
"[GUI](https://github.com/Qiskit/qiskit-chemistry/blob/master/README.md#gui) or \n",
44-
"[command line](https://github.com/Qiskit/qiskit-chemistry/blob/master/README.md#command-line) tool.\n",
41+
"The folder [input_files](../chemistry/input_files) contains a number of example input files that can be loaded and run by the Qiskit Aqua\n",
42+
"[GUI or command line](https://github.com/Qiskit/qiskit-aqua-interfaces) tool.\n",
4543
"\n",
4644
"The following notebooks are noted:\n",
4745
"\n",
@@ -54,17 +52,17 @@
5452
"* [H2 ground state energy with VQE and SPSA](../chemistry/h2_vqe_spsa.ipynb) Near-term device experiment\n",
5553
"\n",
5654
"There are many more notebooks. The repository here may be viewed for the\n",
57-
"[full listing](https://github.com/Qiskit/qiskit-tutorial/tree/master/community/chemistry).\n",
55+
"[full listing](../chemistry).\n",
5856
"\n",
5957
"### 3. [Qiskit Artificial Intelligence](../artificial_intelligence/)<a id='artificial_intelligence'></a>\n",
6058
"\n",
6159
"Qiskit Artificial Intelligence is a set of tools, algorithms and software for use with quantum computers to carry out research and investigate how to take advantage of quantum computing power to solve artificial intelligence problems. \n",
6260
"\n",
63-
"* [Quantum SVM algorithm: multiclass classifier extension](artificial_intelligence/qsvm_multiclass.ipynb)\n",
64-
"* [Variational Quantum Classifier (vqc)](artificial_intelligence/vqc.ipynb)\n",
61+
"* [Quantum SVM algorithm: multiclass classifier extension](../artificial_intelligence/qsvm_multiclass.ipynb)\n",
62+
"* [Variational Quantum Classifier (vqc)](../artificial_intelligence/vqc.ipynb)\n",
6563
"\n",
6664
"The repository here may be viewed for the\n",
67-
"[full listing](https://github.com/Qiskit/qiskit-tutorial/tree/master/community/artificial_intelligence).\n",
65+
"[full listing](../artificial_intelligence).\n",
6866
"\n",
6967
"### 4. [Qiskit Optimization](../optimization/)<a id='optimization'></a>\n",
7068
"\n",
@@ -75,17 +73,17 @@
7573
"* [Using Aqua for stable-set problems](../optimization/stable_set.ipynb)\n",
7674
"\n",
7775
"The repository here may be viewed for the\n",
78-
"[full listing](https://github.com/Qiskit/qiskit-tutorial/tree/master/community/optimization).\n",
76+
"[full listing](../optimization).\n",
7977
"\n",
8078
"### 5. [Qiskit Finance](../finance/)<a id='finance'></a>\n",
8179
"\n",
8280
"Qiskit Finance is a set of tools, algorithms and software for use with quantum computers to carry out research and investigate how to take advantage of quantum computing power to solve problems in the financial domain.\n",
83-
"Please also see the [Qiskit Finance Tutorials](../../qiskit/finance/index.ipynb) for more examples.\n",
81+
"Please also see the [Qiskit Finance Tutorials](https://github.com/Qiskit/qiskit-tutorials/tree/master/qiskit/finance/index.ipynb) for more examples.\n",
8482
"\n",
8583
"Quantum computing for option pricing:\n",
86-
"* <a href=\"simulation/long_butterfly.ipynb\">Long Butterfly</a> (univariate, payoff with 4 segments)\n",
87-
"* <a href=\"simulation/short_butterfly.ipynb\">Short Butterfly</a> (univariate, payoff with 4 segments)\n",
88-
"* <a href=\"simulation/iron_condor.ipynb\">Iron Condor</a> (univariate, payoff with 5 segments)\n",
84+
"* <a href=\"../finance/simulation/long_butterfly.ipynb\">Long Butterfly</a> (univariate, payoff with 4 segments)\n",
85+
"* <a href=\"../finance/simulation/short_butterfly.ipynb\">Short Butterfly</a> (univariate, payoff with 4 segments)\n",
86+
"* <a href=\"../finance/simulation/iron_condor.ipynb\">Iron Condor</a> (univariate, payoff with 5 segments)\n",
8987
"\n",
9088
"The repository here may be viewed for the\n",
9189
"[full listing](../finance).\n",

aqua/shors.ipynb

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -29,7 +29,7 @@
2929
"cell_type": "markdown",
3030
"metadata": {},
3131
"source": [
32-
"The [Shor's Factoring Algorithm](https://en.wikipedia.org/wiki/Shor's_algorithm) is explained in more detail in the corresponding notebook located in the directory `community/algorithms`. With Aqua, we can create a `Shor` instance by simply providing the target integer to be factored and run it, as follows."
32+
"The [Shor's Factoring Algorithm](https://en.wikipedia.org/wiki/Shor's_algorithm) is explained in more detail in the corresponding notebook located in the directory `algorithms`. With Aqua, we can create a `Shor` instance by simply providing the target integer to be factored and run it, as follows."
3333
]
3434
},
3535
{

aqua/simon.ipynb

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -31,7 +31,7 @@
3131
"cell_type": "markdown",
3232
"metadata": {},
3333
"source": [
34-
"The [Simon's algorithm](https://en.wikipedia.org/wiki/Simon's_problem) is explained in more detail in the corresponding notebook located in the directory `community/algorithms`. We can experiment with it in Aqua by feeding it oracles created using truth tables. For example, we can create a `TruthTableOracle` instance as follows."
34+
"The [Simon's algorithm](https://en.wikipedia.org/wiki/Simon's_problem) is explained in more detail in the corresponding notebook located in the directory `algorithms`. We can experiment with it in Aqua by feeding it oracles created using truth tables. For example, we can create a `TruthTableOracle` instance as follows."
3535
]
3636
},
3737
{

0 commit comments

Comments
 (0)