{
 "cells": [
  {
   "cell_type": "code",
   "execution_count": 1,
   "id": "65935fec",
   "metadata": {
    "ExecuteTime": {
     "end_time": "2023-02-03T08:41:58.274070Z",
     "start_time": "2023-02-03T08:41:58.256821Z"
    }
   },
   "outputs": [],
   "source": [
    "from diskit import *\n",
    "import warnings\n",
    "\n",
    "warnings.filterwarnings(\"ignore\")"
   ]
  },
  {
   "cell_type": "markdown",
   "source": [
    "# Example to create a topology"
   ],
   "metadata": {
    "collapsed": false
   }
  },
  {
   "cell_type": "code",
   "execution_count": null,
   "outputs": [],
   "source": [
    "circuit_topo = Topology()\n",
    "circuit_topo.create_qmap(3, [2, 3, 3], \"sys\")\n",
    "circuit_topo.qmap, circuit_topo.emap"
   ],
   "metadata": {
    "collapsed": false
   }
  },
  {
   "cell_type": "markdown",
   "id": "169d787d",
   "metadata": {},
   "source": [
    "In-built functions to support actions in topology class"
   ]
  },
  {
   "cell_type": "code",
   "execution_count": 3,
   "id": "afe696b3",
   "metadata": {
    "ExecuteTime": {
     "end_time": "2023-02-03T08:42:00.214160Z",
     "start_time": "2023-02-03T08:42:00.197002Z"
    }
   },
   "outputs": [
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Total Number of Qubits in Topology :  8\n",
      "Total Number of QPUs in Topology:  3\n",
      "Qubit(QuantumRegister(3, 'sys1'), 2) and Qubit(QuantumRegister(3, 'sys2'), 1) are not adjacent\n",
      "Qubit: Qubit(QuantumRegister(2, 'sys0'), 0) --------- Host: sys0\n",
      "Qubit: Qubit(QuantumRegister(2, 'sys0'), 1) --------- Host: sys0\n",
      "Qubit: Qubit(QuantumRegister(3, 'sys1'), 0) --------- Host: sys1\n",
      "Qubit: Qubit(QuantumRegister(3, 'sys1'), 1) --------- Host: sys1\n",
      "Qubit: Qubit(QuantumRegister(3, 'sys1'), 2) --------- Host: sys1\n",
      "Qubit: Qubit(QuantumRegister(3, 'sys2'), 0) --------- Host: sys2\n",
      "Qubit: Qubit(QuantumRegister(3, 'sys2'), 1) --------- Host: sys2\n",
      "Qubit: Qubit(QuantumRegister(3, 'sys2'), 2) --------- Host: sys2\n"
     ]
    }
   ],
   "source": [
    "print(\"Total Number of Qubits in Topology : \", circuit_topo.num_qubits())\n",
    "print(\"Total Number of QPUs in Topology: \", circuit_topo.num_hosts())\n",
    "\n",
    "Qubit1 = circuit_topo.qmap[\"sys1\"][2]\n",
    "Qubit2 = circuit_topo.qmap[\"sys2\"][1]\n",
    "print(\"{} and {} are adjacent\".format(Qubit1, Qubit2)\n",
    "      if circuit_topo.are_adjacent(Qubit1, Qubit2) else\n",
    "      \"{} and {} are not adjacent\".format(Qubit1, Qubit2))\n",
    "\n",
    "for qubit in circuit_topo.qubits:\n",
    "    print(\"Qubit: {} --------- Host: {}\".format(qubit, circuit_topo.get_host(qubit)))"
   ]
  }
 ],
 "metadata": {
  "kernelspec": {
   "display_name": "Python 3 (ipykernel)",
   "language": "python",
   "name": "python3"
  },
  "language_info": {
   "codemirror_mode": {
    "name": "ipython",
    "version": 3
   },
   "file_extension": ".py",
   "mimetype": "text/x-python",
   "name": "python",
   "nbconvert_exporter": "python",
   "pygments_lexer": "ipython3",
   "version": "3.7.10"
  },
  "toc": {
   "base_numbering": 1,
   "nav_menu": {},
   "number_sections": true,
   "sideBar": true,
   "skip_h1_title": false,
   "title_cell": "Table of Contents",
   "title_sidebar": "Contents",
   "toc_cell": false,
   "toc_position": {},
   "toc_section_display": true,
   "toc_window_display": false
  }
 },
 "nbformat": 4,
 "nbformat_minor": 5
}