~jrjohansson/qutip/master

« back to all changes in this revision

Viewing changes to qutip/fredkin.py

  • Committer: Paul Nation
  • Date: 2011-04-21 04:46:56 UTC
  • Revision ID: git-v1:dd4c966b490aa468dfbd28cef66694df4bf235c8

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
#This file is part of QuTIP.
 
2
#
 
3
#    QuTIP is free software: you can redistribute it and/or modify
 
4
#    it under the terms of the GNU General Public License as published by
 
5
#    the Free Software Foundation, either version 3 of the License, or
 
6
#   (at your option) any later version.
 
7
#
 
8
#    QuTIP is distributed in the hope that it will be useful,
 
9
#    but WITHOUT ANY WARRANTY; without even the implied warranty of
 
10
#    MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
 
11
#    GNU General Public License for more details.
 
12
#
 
13
#    You should have received a copy of the GNU General Public License
 
14
#    along with QuTIP.  If not, see <http://www.gnu.org/licenses/>.
 
15
#
 
16
# Copyright (C) 2011, Paul D. Nation & Robert J. Johansson
 
17
#
 
18
###########################################################################
 
19
from qstate import qstate
 
20
from qobj import dag
 
21
 
 
22
# FREDKIN computes the operator for a Fredkin gate
 
23
# The last two inputs are swapped if the first input is u
 
24
 
 
25
# A B C  A' B' C'
 
26
# ---------------
 
27
# d d d  d  d  d
 
28
# d d u  d  d  u
 
29
# d u d  d  u  d
 
30
# d u u  d  u  u
 
31
# u d d  u  d  d
 
32
# u d u  u  u  d
 
33
# u u d  u  d  u
 
34
# u u u  u  u  u
 
35
 
 
36
 
 
37
def fredkin():
 
38
        uuu = qstate('uuu')
 
39
        uud = qstate('uud') 
 
40
        udu = qstate('udu')
 
41
        udd = qstate('udd')
 
42
        duu = qstate('duu') 
 
43
        dud = qstate('dud')
 
44
        ddu = qstate('ddu')
 
45
        ddd = qstate('ddd')
 
46
        Q = ddd*dag(ddd) + ddu*dag(ddu) + dud*dag(dud) + duu*dag(duu) + udd*dag(udd) + uud*dag(udu) + udu*dag(uud) + uuu*dag(uuu)
 
47
        return Q
 
48