-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathQIStudy.mm
2307 lines (2306 loc) · 185 KB
/
QIStudy.mm
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
<map version="docear 1.1" dcr_id="1372647137294_6r11psc21r9n5oknga0tjiitu" project="13FA727FDA42AATC45LPZ5G3LUB2K3USM83Q" project_last_home="file:/F:/Research/Works/QIStudy/">
<!--To view this file, download Docear - The Academic Literature Suite from http://www.docear.org -->
<node TEXT="Quantum Information Processing
(for design and research purpose)" LOCALIZED_STYLE_REF="styles.topic" FOLDED="false" ID="ID_1723255651" CREATED="1283093380553" MODIFIED="1372953886077" MAX_WIDTH="560"><hook NAME="MapStyle" zoom="0.565">
<properties show_icon_for_attributes="true" show_note_icons="true"/>
<map_styles>
<stylenode LOCALIZED_TEXT="styles.root_node">
<stylenode LOCALIZED_TEXT="styles.predefined" POSITION="right">
<stylenode LOCALIZED_TEXT="default" MAX_WIDTH="600" COLOR="#000000" STYLE="as_parent">
<font NAME="SansSerif" SIZE="10" BOLD="false" ITALIC="false"/>
</stylenode>
<stylenode LOCALIZED_TEXT="defaultstyle.details"/>
<stylenode LOCALIZED_TEXT="defaultstyle.note"/>
<stylenode LOCALIZED_TEXT="defaultstyle.floating">
<edge STYLE="hide_edge"/>
<cloud COLOR="#f0f0f0" SHAPE="ROUND_RECT"/>
</stylenode>
</stylenode>
<stylenode LOCALIZED_TEXT="styles.user-defined" POSITION="right">
<stylenode LOCALIZED_TEXT="styles.topic" COLOR="#18898b" STYLE="fork">
<font NAME="Liberation Sans" SIZE="10" BOLD="true"/>
</stylenode>
<stylenode LOCALIZED_TEXT="styles.subtopic" COLOR="#cc3300" STYLE="fork">
<font NAME="Liberation Sans" SIZE="10" BOLD="true"/>
</stylenode>
<stylenode LOCALIZED_TEXT="styles.subsubtopic" COLOR="#669900">
<font NAME="Liberation Sans" SIZE="10" BOLD="true"/>
</stylenode>
<stylenode LOCALIZED_TEXT="styles.important">
<icon BUILTIN="yes"/>
</stylenode>
</stylenode>
<stylenode LOCALIZED_TEXT="styles.AutomaticLayout" POSITION="right">
<stylenode LOCALIZED_TEXT="AutomaticLayout.level.root" COLOR="#000000">
<font SIZE="18"/>
</stylenode>
<stylenode LOCALIZED_TEXT="AutomaticLayout.level,1" COLOR="#0033ff">
<font SIZE="16"/>
</stylenode>
<stylenode LOCALIZED_TEXT="AutomaticLayout.level,2" COLOR="#00b439">
<font SIZE="14"/>
</stylenode>
<stylenode LOCALIZED_TEXT="AutomaticLayout.level,3" COLOR="#990000">
<font SIZE="12"/>
</stylenode>
<stylenode LOCALIZED_TEXT="AutomaticLayout.level,4" COLOR="#111111">
<font SIZE="10"/>
</stylenode>
</stylenode>
</stylenode>
</map_styles>
</hook>
<hook NAME="AutomaticEdgeColor" COUNTER="4"/>
<font NAME="Dialog"/>
<node TEXT="One Possible Division of the Hierarchy of QIP" POSITION="right" ID="ID_237976702" CREATED="1372647261940" MODIFIED="1372788912745" MAX_WIDTH="150">
<edge COLOR="#ff0000"/>
<node TEXT="Physical Level" ID="ID_849467197" CREATED="1372647582343" MODIFIED="1372657591719">
<node TEXT="Information Representation Units" FOLDED="true" ID="ID_1319549515" CREATED="1372653852406" MODIFIED="1372654696900">
<node TEXT="Requirements" FOLDED="true" ID="ID_919221997" CREATED="1372654382376" MODIFIED="1372654407128">
<node TEXT="Controlable freedoms" ID="ID_206653511" CREATED="1372654448182" MODIFIED="1372654460547"/>
<node TEXT="Availability" ID="ID_1266026623" CREATED="1372654462037" MODIFIED="1372654660859"/>
<node TEXT="Spatial and Tempal properties" FOLDED="true" ID="ID_106243547" CREATED="1372654489240" MODIFIED="1372654508051">
<node TEXT="Flying and Fixed Info Units" ID="ID_1223479862" CREATED="1372654519322" MODIFIED="1372654536152"/>
<node TEXT="Coherent time" ID="ID_260817024" CREATED="1372654537190" MODIFIED="1372654546395"/>
<node TEXT="Dephasing time" ID="ID_866212004" CREATED="1372654547277" MODIFIED="1372654553278"/>
</node>
<node TEXT="Locality and non-local coupling" ID="ID_1321927951" CREATED="1372654561290" MODIFIED="1372654597526"/>
<node TEXT="Feasibility" FOLDED="true" ID="ID_719898355" CREATED="1372654814732" MODIFIED="1372654830032">
<node TEXT="Energy consuming" ID="ID_677881557" CREATED="1372654838843" MODIFIED="1372654850040"/>
<node TEXT="Size of Possible System" ID="ID_566202145" CREATED="1372654850802" MODIFIED="1372654891762"/>
<node TEXT="Temperature requirement" ID="ID_293405775" CREATED="1372654894436" MODIFIED="1372654905223"/>
<node TEXT="Sensitivity of measurements" ID="ID_24798207" CREATED="1372655009396" MODIFIED="1372655033630"/>
<node TEXT="Robustness" ID="ID_1461129415" CREATED="1372655061871" MODIFIED="1372655067030"/>
<node TEXT="Other constrants" ID="ID_1656512013" CREATED="1372654907073" MODIFIED="1372654917289"/>
</node>
</node>
<node TEXT="Examples" FOLDED="true" ID="ID_1459485077" CREATED="1372654408487" MODIFIED="1372654413843">
<node TEXT="Photon and Boson Systems" ID="ID_1670511090" CREATED="1372653962760" MODIFIED="1372654166184" MOVED="1372654426418"/>
<node TEXT="Spin of Particles" ID="ID_1040235898" CREATED="1372654167679" MODIFIED="1372654181566" MOVED="1372654426435"/>
<node TEXT="Quasi-Particles" FOLDED="true" ID="ID_1303352708" CREATED="1372654182164" MODIFIED="1372654217590" MOVED="1372654426449">
<node TEXT="Anyons" ID="ID_52314069" CREATED="1372654343497" MODIFIED="1372654366957"/>
</node>
</node>
</node>
<node TEXT="Systematical Integration" FOLDED="true" ID="ID_1540618512" CREATED="1372655097409" MODIFIED="1372655113345">
<node TEXT="Basic requirements" ID="ID_514046143" CREATED="1372655120308" MODIFIED="1372655282797"/>
<node TEXT="Controlable isolation and coupling" ID="ID_1335332417" CREATED="1372655149255" MODIFIED="1372655163030"/>
<node TEXT="Clock system and timing signal control" ID="ID_1495565820" CREATED="1372655166269" MODIFIED="1372655230078"/>
<node TEXT="Classical and quantum control interface" ID="ID_1112872192" CREATED="1372655342944" MODIFIED="1372655364684"/>
</node>
<node TEXT="Physical Implement Categories" ID="ID_591538764" CREATED="1372653907607" MODIFIED="1372653933424">
<node TEXT="Optical Systems" ID="ID_228977265" CREATED="1372651343155" MODIFIED="1372651361877" MOVED="1372653953384">
<node TEXT="mapping polarization to Poincare sphere and basic gates" ID="ID_966529317" CREATED="1379016878341" MODIFIED="1379016922807">
<node TEXT="Universal unitary gates for single-photon 2-qubit states" ID="ID_1111902869" CREATED="1379016931860" MODIFIED="1379016987842" LINK="project://13FA727FDA42AATC45LPZ5G3LUB2K3USM83Q/../../../References/Archive/Englert2001UniversalUnitaryGatesPhysRevA.63.032303.pdf" TEXT_SHORTENED="true">
<attribute NAME="key" VALUE="Englert2001"/>
<attribute NAME="journal" VALUE="Phys. Rev. A"/>
<attribute NAME="authors" VALUE="Englert, Berthold-Georg and Kurtsiefer, Christian and Weinfurter, Harald"/>
<attribute NAME="title" VALUE="Universal unitary gate for single-photon two-qubit states"/>
<attribute NAME="year" VALUE="2001"/>
<pdf_annotation type="PDF_FILE" object_id="0" document_hash="B7CB9CC41567E6DF111915C126E61212902A94B27729BF91B0B6BF5B44B3">
<pdf_title>Universal unitary gate for single-photon two-qubit states</pdf_title>
</pdf_annotation>
</node>
</node>
<node TEXT="Control over optical properties" ID="ID_77929624" CREATED="1380230351743" MODIFIED="1380230440404">
<node TEXT="Dispersion and control" ID="ID_436041387" CREATED="1380230446479" MODIFIED="1380230464035">
<node TEXT="Angular dispersion (tutorial)" ID="ID_1020836438" CREATED="1380230466879" MODIFIED="1380230498203" LINK="project://13FA727FDA42AATC45LPZ5G3LUB2K3USM83Q/../../../References/Archive/Torres2010AngularDispersion.pdf" TEXT_SHORTENED="true">
<attribute NAME="key" VALUE="Torres2010"/>
<attribute NAME="journal" VALUE="Adv. Opt. Photon."/>
<attribute NAME="authors" VALUE="Juan P. Torres and Martin Hendrych and Alejandra Valencia"/>
<attribute NAME="title" VALUE="Angular dispersion: an enabling tool in nonlinear and quantum optics"/>
<attribute NAME="year" VALUE="2010"/>
<pdf_annotation type="PDF_FILE" object_id="0" document_hash="F47E4E2A2DFB5DEBF91EFEBDF2C2B1A7B218F871D6D1A6C3E7D5C64E34D3999">
<pdf_title>Angular dispersion: an enabling tool in nonlinear and quantum optics</pdf_title>
</pdf_annotation>
</node>
</node>
</node>
<node TEXT="Optical Signal and information Processing" ID="ID_1498847951" CREATED="1380230799346" MODIFIED="1380230823232">
<node TEXT="Ultrahigh speed optical signal processing" ID="ID_1675983613" CREATED="1380230828545" MODIFIED="1380230860362">
<node TEXT="Space-time duality and applications to ultrahigh-speed signal processing" ID="ID_571825124" CREATED="1380230861406" MODIFIED="1380230903841" LINK="project://13FA727FDA42AATC45LPZ5G3LUB2K3USM83Q/../../../References/Archive/Salem2013ApplicationOfSpace-timeDuality.pdf" TEXT_SHORTENED="true">
<attribute NAME="key" VALUE="Salem2013"/>
<attribute NAME="journal" VALUE="Adv. Opt. Photon."/>
<attribute NAME="authors" VALUE="Reza Salem and Mark A. Foster and Alexander L. Gaeta"/>
<attribute NAME="title" VALUE="Application of space\&\#x2013;time duality to ultrahigh-speed optical signal processing"/>
<attribute NAME="year" VALUE="2013"/>
<pdf_annotation type="PDF_FILE" object_id="0" document_hash="2DC2CA6B4973E73622DA24E1DC10BC9BECE4F5B26D8D7B8BE0AEF7B7E776">
<pdf_title>Application of spacetime duality to ultrahigh-speed optical signal processing</pdf_title>
</pdf_annotation>
</node>
<node TEXT="A high-speed tunable beam splitter for feed-forward photonic quantum
 information processing" ID="ID_1143014178" CREATED="1385427053805" MODIFIED="1385427067365" LINK="project://13FA727FDA42AATC45LPZ5G3LUB2K3USM83Q/../../../References/Archive/Ma2011.pdf" TEXT_SHORTENED="true">
<attribute NAME="key" VALUE="Ma2011"/>
<attribute NAME="journal" VALUE="Opt. Express"/>
<attribute NAME="authors" VALUE="Xiao-song Ma and Stefan Zotter and Nuray Tetik and Angie Qarry and Thomas Jennewein and Anton Zeilinger"/>
<attribute NAME="title" VALUE="A high-speed tunable beam splitter for feed-forward photonic quantum information processing"/>
<attribute NAME="year" VALUE="2011"/>
<pdf_annotation type="PDF_FILE" object_id="0" document_hash="654767EDF6DF32BA35F1385CCD5BD3D2261E2D1D21C729887C446322143116E">
<pdf_title>A high-speed tunable beam splitter for feed-forward photonic quantum information processing</pdf_title>
</pdf_annotation>
</node>
</node>
</node>
<node TEXT="Optical elements" ID="ID_492204007" CREATED="1381351567391" MODIFIED="1381351571921">
<node TEXT="Trapping/reflecting light elements" ID="ID_1823791560" CREATED="1381351578592" MODIFIED="1381351605393">
<node TEXT="Trapping light with PC and perfect mirrors" ID="ID_727904599" CREATED="1381351606735" MODIFIED="1381351637677" LINK="project://13FA727FDA42AATC45LPZ5G3LUB2K3USM83Q/../../../References/Archive/Hsu2013Observation-s1.pdf" TEXT_SHORTENED="true">
<attribute NAME="key" VALUE="Hsu2013"/>
<attribute NAME="journal" VALUE="Nature"/>
<attribute NAME="authors" VALUE="Hsu, Chia Wei and Zhen, Bo and Lee, Jeongwon and Chua, Song-Liang and Johnson, Steven G and Joannopoulos, John D and Solja{\v{c}}i{\'c}, Marin"/>
<attribute NAME="title" VALUE="Observation of trapped light within the radiation continuum"/>
<attribute NAME="year" VALUE="2013"/>
<pdf_annotation type="PDF_FILE" object_id="0" document_hash="17EEE8E0B91C5DF2163BCE88E055546C85BE57E9D1ED9B4746FD195107C1D9B">
<pdf_title></pdf_title>
</pdf_annotation>
</node>
</node>
<node TEXT="Interferometers and devices" ID="ID_1933847618" CREATED="1386615161264" MODIFIED="1386615723531">
<node TEXT="All-fiber three-way Mach–Zehnder interferometers" ID="ID_1102211714" CREATED="1386615175774" MODIFIED="1386615226369" LINK="project://13FA727FDA42AATC45LPZ5G3LUB2K3USM83Q/../../../References/Archive/Weihs1996.pdf" TEXT_SHORTENED="true">
<attribute NAME="key" VALUE="Weihs1996"/>
<attribute NAME="journal" VALUE="Optics letters"/>
<attribute NAME="authors" VALUE="Weihs, Gregor and Reck, Michael and Weinfurter, Harald and Zeilinger, Anton"/>
<attribute NAME="title" VALUE="All-fiber three-path Mach—Zehnder interferometer"/>
<attribute NAME="year" VALUE="1996"/>
<pdf_annotation type="PDF_FILE" object_id="0" document_hash="563F54BA8513B7CC77C6D1826BD343CD959E9456598FED7D075F6896A357F">
<pdf_title>All-fiber three-path Mach–Zehnder interferometer</pdf_title>
</pdf_annotation>
</node>
<node TEXT="All-fiber active add-drop wavelength router" ID="ID_37235285" CREATED="1386615726722" MODIFIED="1386615736607" LINK="project://13FA727FDA42AATC45LPZ5G3LUB2K3USM83Q/../../../References/Archive/Nykolak1997.pdf" TEXT_SHORTENED="true">
<attribute NAME="key" VALUE="Nykolak1997"/>
<attribute NAME="journal" VALUE="Photonics Technology Letters, IEEE"/>
<attribute NAME="authors" VALUE="Nykolak, G. and De Barros, M. R X and Nielsen, T.N. and Eskildsen, L."/>
<attribute NAME="title" VALUE="All-fiber active add-drop wavelength router"/>
<attribute NAME="year" VALUE="1997"/>
<pdf_annotation type="PDF_FILE" object_id="0" document_hash="CEF56B77E5428082119150FF95827761156760DDD20284E8BE4173FB3A273A">
<pdf_title>All-Fiber Active Add-Drop Wavelength Router</pdf_title>
</pdf_annotation>
</node>
</node>
</node>
<node TEXT="Fundamental theories and reviews" ID="ID_1675659674" CREATED="1385417819157" MODIFIED="1385426298702">
<node TEXT="Optical simulation of quantum logic" ID="ID_1853936415" CREATED="1385429222916" MODIFIED="1385429256456" LINK="project://13FA727FDA42AATC45LPZ5G3LUB2K3USM83Q/../../../References/Archive/Cerf1998.pdf" TEXT_SHORTENED="true" MOVED="1385429263035">
<attribute NAME="key" VALUE="Cerf1998"/>
<attribute NAME="journal" VALUE="Physical Review A"/>
<attribute NAME="authors" VALUE="Cerf, NJ and Adami, C and Kwiat, PG"/>
<attribute NAME="title" VALUE="Optical simulation of quantum logic"/>
<attribute NAME="year" VALUE="1998"/>
<pdf_annotation type="PDF_FILE" object_id="0" document_hash="7B33A8D583B819D26BD84EE31063AB3634B57DA41BEC4B9621DFBA29E7CC9C">
<pdf_title>Optical simulation of quantum logic</pdf_title>
</pdf_annotation>
</node>
<node TEXT="Photonic quantum technologies" ID="ID_1299336249" CREATED="1385490155490" MODIFIED="1385490167742" LINK="project://13FA727FDA42AATC45LPZ5G3LUB2K3USM83Q/../../../References/Archive/OBrien2009.pdf" TEXT_SHORTENED="true">
<attribute NAME="key" VALUE="OBrien2009"/>
<attribute NAME="journal" VALUE="Nature Photonics"/>
<attribute NAME="authors" VALUE="O'Brien, Jeremy L and Akira Furusawa, Jelena Vu{\v{c}}kovi\&cacute"/>
<attribute NAME="title" VALUE="Photonic quantum technologies"/>
<attribute NAME="year" VALUE="2009"/>
<pdf_annotation type="BOOKMARK" page="1" object_id="623117014184291657" object_number="133" document_hash="40D71C621B6E6B526C1E6A41E850BC667EE542128D7C5182E9E9C7DE212EB116">
<pdf_title>photonic quantum technologies</pdf_title>
</pdf_annotation>
</node>
<node TEXT="Reducing the complexity of linear optics quantum circuits" ID="ID_1386197951" CREATED="1385418049123" MODIFIED="1385418058510" LINK="project://13FA727FDA42AATC45LPZ5G3LUB2K3USM83Q/../../../References/Archive/Howell2000.pdf" TEXT_SHORTENED="true">
<attribute NAME="key" VALUE="Howell2000"/>
<attribute NAME="journal" VALUE="Phys. Rev. A"/>
<attribute NAME="authors" VALUE="Howell, John C. and Yeazell, John A."/>
<attribute NAME="title" VALUE="Reducing the complexity of linear optics quantum circuits"/>
<attribute NAME="year" VALUE="2000"/>
<pdf_annotation type="PDF_FILE" object_id="0" document_hash="6BE11DF2FF358312F1F49ABFC69547EB03581CCA8E25AD81A281D13086C">
<pdf_title>Reducing the complexity of linear optics quantum circuits</pdf_title>
</pdf_annotation>
</node>
<node TEXT="Multiphoton entanglement and interferometry" ID="ID_1342454075" CREATED="1385426288032" MODIFIED="1385426308634" LINK="project://13FA727FDA42AATC45LPZ5G3LUB2K3USM83Q/../../../References/Archive/Pan2012.pdf" TEXT_SHORTENED="true">
<attribute NAME="key" VALUE="Pan2012"/>
<attribute NAME="journal" VALUE="Rev. Mod. Phys."/>
<attribute NAME="authors" VALUE="Pan, Jian-Wei and Chen, Zeng-Bing and Lu, Chao-Yang and Weinfurter, Harald and Zeilinger, Anton and \ifmmode \dot{Z}\else \.{Z}\fi{}ukowski, Marek"/>
<attribute NAME="title" VALUE="Multiphoton entanglement and interferometry"/>
<attribute NAME="year" VALUE="2012"/>
<pdf_annotation type="PDF_FILE" object_id="0" document_hash="B7A3AE573DAF3E3CFF236A9F4B5A0FA584ABE64A6E5F492D19DC262D4465794">
<pdf_title>Multiphoton entanglement and interferometry</pdf_title>
</pdf_annotation>
</node>
<node TEXT="Linear optical quantum computing with photonic qubits" ID="ID_56459982" CREATED="1385427370268" MODIFIED="1385427382368" LINK="project://13FA727FDA42AATC45LPZ5G3LUB2K3USM83Q/../../../References/Archive/Kok2007.pdf" TEXT_SHORTENED="true">
<attribute NAME="key" VALUE="Kok2007"/>
<attribute NAME="journal" VALUE="Rev. Mod. Phys."/>
<attribute NAME="authors" VALUE="Kok, Pieter and Munro, W. J. and Nemoto, Kae and Ralph, T. C. and Dowling, Jonathan P. and Milburn, G. J."/>
<attribute NAME="title" VALUE="Linear optical quantum computing with photonic qubits"/>
<attribute NAME="year" VALUE="2007"/>
<pdf_annotation type="PDF_FILE" object_id="0" document_hash="5B847B95DCC174C2EA4C40C57EAB70FD5CD3A4035C0415B37FC2EDC245B41FA">
<pdf_title>Linear optical quantum computing with photonic qubits</pdf_title>
</pdf_annotation>
</node>
<node TEXT="Resource-efficient linear-optical quantum router" ID="ID_1295650400" CREATED="1385427902319" MODIFIED="1385503099480" LINK="project://13FA727FDA42AATC45LPZ5G3LUB2K3USM83Q/../../../References/Archive/Lemr2013.pdf" TEXT_SHORTENED="true">
<attribute NAME="key" VALUE="Lemr2013"/>
<attribute NAME="journal" VALUE="Phys. Rev. A"/>
<attribute NAME="authors" VALUE="Lemr, Karel and Bartkiewicz, Karol and {\v{C}}ernoch, Anton{\'\i}n and Soubusta, Jan"/>
<attribute NAME="title" VALUE="Resource-efficient linear-optical quantum router"/>
<attribute NAME="year" VALUE="2013"/>
<pdf_annotation type="PDF_FILE" object_id="0" document_hash="3D8FB120E3649578BADDCCAF8AD74205D9D5BA8ED817CB04BDBF76E9D8AC6E1">
<pdf_title>Resource-efficient linear-optical quantum router</pdf_title>
</pdf_annotation>
</node>
<node TEXT="One-step deterministic multipartite entanglement purification with linear optics" ID="ID_19532096" CREATED="1385428642056" MODIFIED="1385428658764" LINK="project://13FA727FDA42AATC45LPZ5G3LUB2K3USM83Q/../../../References/Archive/Sheng2012.pdf" TEXT_SHORTENED="true">
<attribute NAME="key" VALUE="Sheng2012"/>
<attribute NAME="journal" VALUE="Physics Letters A "/>
<attribute NAME="authors" VALUE="Yu-Bo Sheng and Gui Lu Long and Fu-Guo Deng"/>
<attribute NAME="title" VALUE="One-step deterministic multipartite entanglement purification with linear optics "/>
<attribute NAME="year" VALUE="2012"/>
<pdf_annotation type="PDF_FILE" object_id="0" document_hash="A4E814AD7D1422C87908281576E81C461C668FEFE93C8BDECF216ED6A7CF99">
<pdf_title>Physics Letters A</pdf_title>
</pdf_annotation>
</node>
<node TEXT="Optical quantum circuits: To the quantum level" ID="ID_1463795524" CREATED="1385440767422" MODIFIED="1385440790077" TEXT_SHORTENED="true">
<attribute NAME="key" VALUE="Gevaux2008"/>
<attribute NAME="journal" VALUE="Nature Photonics"/>
<attribute NAME="authors" VALUE="Gevaux, David"/>
<attribute NAME="title" VALUE="Optical quantum circuits: To the quantum level"/>
<attribute NAME="year" VALUE="2008"/>
</node>
<node TEXT="Quantum circuits and optical implementations" ID="ID_1878013112" CREATED="1386218066209" MODIFIED="1386218090827" LINK="project://13FA727FDA42AATC45LPZ5G3LUB2K3USM83Q/../../../References/Archive/Asfaw2012QuantumCircuits.pdf" TEXT_SHORTENED="true">
<attribute NAME="key" VALUE="Asfaw2012"/>
<attribute NAME="authors" VALUE="Asfaw, Abraham and Nisteruk, Chester"/>
<attribute NAME="title" VALUE="Quantum Circuits and their Optical Implementations"/>
<attribute NAME="year" VALUE="2012"/>
<pdf_annotation type="PDF_FILE" object_id="0" document_hash="7C1727CBE3F346C5BC14EEB681E77B2575A5677757E9B2F92B8246B77B34AA">
<pdf_title>Quantum Circuits and their Optical</pdf_title>
</pdf_annotation>
<node TEXT="The slides" ID="ID_1774760401" CREATED="1390857028709" MODIFIED="1390857131276" LINK="project://13FA727FDA42AATC45LPZ5G3LUB2K3USM83Q/../../../References/Archive/Asfaw2012QuantumCircuits_Slides.pdf">
<pdf_annotation type="PDF_FILE" object_id="0" document_hash="23FBCEFB59C9CC1E05ADAF773C7ED7C215BB483DFF67981A497D2CE8EC444FA">
<pdf_title>Quantum Circuits and their Optical Implementations</pdf_title>
</pdf_annotation>
</node>
</node>
<node TEXT="Initial ideas" ID="ID_1643994391" CREATED="1386628594785" MODIFIED="1386628612850">
<node TEXT="Quantum Computation with Linear optics" ID="ID_809282027" CREATED="1385417834181" MODIFIED="1386711716440" LINK="project://13FA727FDA42AATC45LPZ5G3LUB2K3USM83Q/../../../References/Archive/Adami1999QuantumComputationUsingLinearOptics.pdf" TEXT_SHORTENED="true" MOVED="1386628781877">
<attribute NAME="key" VALUE="Adami1999"/>
<attribute NAME="authors" VALUE="Adami, Christoph and Cerf, Nicolas J"/>
<attribute NAME="title" VALUE="Quantum computation with linear optics"/>
<attribute NAME="year" VALUE="1999"/>
<pdf_annotation type="PDF_FILE" object_id="0" document_hash="49ACE9E951C5A563225C8CD861C171EF4FC569EC81638A95A53C2F23A8F63">
<pdf_title>Lecture Notes in Computer Science 1509</pdf_title>
</pdf_annotation>
</node>
</node>
<node TEXT="Towards efficient Linear Optics Quantum Computation" ID="ID_1728894710" CREATED="1386628614271" MODIFIED="1386628645521">
<node TEXT="Main scheme design breakthroughs" ID="ID_18908874" CREATED="1386628796207" MODIFIED="1386628811955" MOVED="1386628814850">
<node TEXT="non-linear sign flip gate with linear optics" ID="ID_313731835" CREATED="1386783278010" MODIFIED="1386783313862" LINK="project://13FA727FDA42AATC45LPZ5G3LUB2K3USM83Q/../../../References/Archive/Adleman1997.pdf" TEXT_SHORTENED="true" MOVED="1386783329585">
<attribute NAME="key" VALUE="Adleman1997"/>
<attribute NAME="journal" VALUE="SIAM Journal on Computing"/>
<attribute NAME="authors" VALUE="Adleman, L. and DeMarrais, J. and Huang, M."/>
<attribute NAME="title" VALUE="Quantum Computability"/>
<attribute NAME="year" VALUE="1997"/>
<pdf_annotation type="PDF_FILE" object_id="0" document_hash="FDA67F5709257384A1A69735F1F8FDE251539B6DE9E662031FEC720562D47">
<pdf_title>In 1982, Feynman [F] considered computers based on quan- tum mechanical principles and speculated about the existence of a universal quantum simulator analogous to a universal Turing machine. That work was followed by a sequence of important papers by Deutsch [D1, D2], Deutch and Jouzsa [DJ], Bern- stein and Vazirani [BV], and others which brought the topic to a state of development suitable for rigorous investigation [Y, Si]. Recently, the topic garnered great attention when Shor [Sh] argued that integer factoring (and the discrete logarithm problem) could be solved in polynomial time on a quantum machine. More formally, Shor as-</pdf_title>
</pdf_annotation>
</node>
<node TEXT="Increase success rate of non-deterministic QC" ID="ID_1328921947" CREATED="1386783862826" MODIFIED="1386783890298">
<node TEXT="" ID="ID_201348506" CREATED="1386783901352" MODIFIED="1386783901352">
<node TEXT="Teleporting an unknown quantum state via dual classical and Einstein-Podolsky-Rosen channel" ID="ID_1929043815" CREATED="1386783902915" MODIFIED="1386783943341" LINK="project://13FA727FDA42AATC45LPZ5G3LUB2K3USM83Q/../../../References/Archive/Bennett1993.pdf" TEXT_SHORTENED="true">
<attribute NAME="key" VALUE="Bennett1993"/>
<attribute NAME="journal" VALUE="Phys. Rev. Lett."/>
<attribute NAME="authors" VALUE="Bennett, Charles H. and Brassard, Gilles and Cr\'epeau, Claude and Jozsa, Richard and Peres, Asher and Wootters, William K."/>
<attribute NAME="title" VALUE="Teleporting an unknown quantum state via dual classical and Einstein-Podolsky-Rosen channels"/>
<attribute NAME="year" VALUE="1993"/>
<pdf_annotation type="PDF_FILE" object_id="0" document_hash="B5D2D6606D249375E61CE14B96697BDCAC245C49DB5A5990ADE11D3AC781C16B">
<pdf_title>¹m</pdf_title>
</pdf_annotation>
</node>
<node TEXT="Demonstrating the viability of universal quantum computation using
teleportation and single-qubit operations" ID="ID_1995698758" CREATED="1386784155429" MODIFIED="1386784173529" LINK="project://13FA727FDA42AATC45LPZ5G3LUB2K3USM83Q/../../../References/Archive/Gottesman1999.pdf" TEXT_SHORTENED="true">
<attribute NAME="key" VALUE="Gottesman1999"/>
<attribute NAME="journal" VALUE="Nature"/>
<attribute NAME="authors" VALUE="Gottesman, Daniel and Chuang, Isaac L"/>
<attribute NAME="title" VALUE="Demonstrating the viability of universal quantum computation using teleportation and single-qubit operations"/>
<attribute NAME="year" VALUE="1999"/>
<pdf_annotation type="PDF_FILE" object_id="0" document_hash="DA9AD4221AC7A1E488DBD571C515E489E29676A6DC915D5474B4BC178E1CD">
<pdf_title>.................................................................</pdf_title>
</pdf_annotation>
</node>
</node>
</node>
<node TEXT="Error correction and encoding errors" ID="ID_1934422218" CREATED="1386896042296" MODIFIED="1386896051816">
<node TEXT="High-fidelity Z-measurement error encoding of optical qubits" ID="ID_625969962" CREATED="1386896064951" MODIFIED="1386896077041" LINK="project://13FA727FDA42AATC45LPZ5G3LUB2K3USM83Q/../../../References/Archive/O’Brien2005.pdf" TEXT_SHORTENED="true">
<attribute NAME="key" VALUE="O’Brien2005"/>
<attribute NAME="journal" VALUE="Physical Review A"/>
<attribute NAME="authors" VALUE="O’Brien, JL and Pryde, GJ and White, AG and Ralph, TC"/>
<attribute NAME="title" VALUE="High-fidelity Z-measurement error encoding of optical qubits"/>
<attribute NAME="year" VALUE="2005"/>
<pdf_annotation type="PDF_FILE" object_id="0" document_hash="87A9B448DDE56A90386B82DBE5B7E0D36B2535DA836BD7C1B9AE79AE54968117">
<pdf_title>High-fidelity -measurement error encoding of optical qubits</pdf_title>
</pdf_annotation>
</node>
<node TEXT="Demonstration of quantum error correction using linear optics" ID="ID_973645859" CREATED="1386896283864" MODIFIED="1386896294484" LINK="project://13FA727FDA42AATC45LPZ5G3LUB2K3USM83Q/../../../References/Archive/Pittman2005.pdf" TEXT_SHORTENED="true">
<attribute NAME="key" VALUE="Pittman2005"/>
<attribute NAME="journal" VALUE="Physical Review A"/>
<attribute NAME="authors" VALUE="Pittman, TB and Jacobs, BC and Franson, JD"/>
<attribute NAME="title" VALUE="Demonstration of quantum error correction using linear optics"/>
<attribute NAME="year" VALUE="2005"/>
<pdf_annotation type="PDF_FILE" object_id="0" document_hash="B17633C4A71AEA68EC87D3D3967F56BE60B6F0E918EBE86BA2932FD64C20CD">
<pdf_title>Demonstration of quantum error correction using linear optics</pdf_title>
</pdf_annotation>
</node>
<node TEXT="Utilizing encoding in scalable linear optics quantum computing" ID="ID_1101561818" CREATED="1386896448344" MODIFIED="1386896459002" LINK="project://13FA727FDA42AATC45LPZ5G3LUB2K3USM83Q/../../../References/Archive/Hayes2004.pdf" TEXT_SHORTENED="true">
<attribute NAME="key" VALUE="Hayes2004"/>
<attribute NAME="journal" VALUE="Journal of Optics B: Quantum and Semiclassical Optics"/>
<attribute NAME="authors" VALUE="Hayes, AJF and Gilchrist, A and Myers, CR and Ralph, TC"/>
<attribute NAME="title" VALUE="Utilizing encoding in scalable linear optics quantum computing"/>
<attribute NAME="year" VALUE="2004"/>
<pdf_annotation type="PDF_FILE" object_id="0" document_hash="C227EC57F3F65EF9ECAE0E5BFAFB9EFC764C8CADE4AC9EF904F74F8CF754FDB">
<pdf_title>Utilizing encoding in scalable linear optics quantum computing</pdf_title>
</pdf_annotation>
</node>
</node>
<node TEXT="The KLM scheme for efficient quantum computation with linear optics" ID="ID_1194400106" CREATED="1385489556637" MODIFIED="1386783325418" LINK="project://13FA727FDA42AATC45LPZ5G3LUB2K3USM83Q/../../../References/Archive/Knill2001_S1.pdf" TEXT_SHORTENED="true" MOVED="1386628818441">
<attribute NAME="key" VALUE="Knill2001"/>
<attribute NAME="journal" VALUE="nature"/>
<attribute NAME="authors" VALUE="Knill, Emanuel and Laflamme, Raymond and Milburn, Gerald J"/>
<attribute NAME="title" VALUE="A scheme for efficient quantum computation with linear optics"/>
<attribute NAME="year" VALUE="2001"/>
<pdf_annotation type="PDF_FILE" object_id="0" document_hash="26A782FB9F897485DCA3AF72C1635A9D2483082CAE11718E89E4A10486A27FD">
<pdf_title>Efficient Linear Optics Quantum Computation:</pdf_title>
</pdf_annotation>
</node>
<node TEXT="entanglement generation" ID="ID_239057474" CREATED="1394253139525" MODIFIED="1394253148203">
<node TEXT="On-demand generation of entanglement of atomic qubits via optical interferometry" ID="ID_250054740" CREATED="1394253149869" MODIFIED="1394253175297" LINK="project://13FA727FDA42AATC45LPZ5G3LUB2K3USM83Q/../../../References/Archive/Huang2008a.pdf" TEXT_SHORTENED="true">
<attribute NAME="key" VALUE="Huang2008a"/>
<attribute NAME="journal" VALUE="Phys. Rev. A"/>
<attribute NAME="authors" VALUE="Huang, Y. P. and Moore, M. G."/>
<attribute NAME="title" VALUE="On-demand generation of entanglement of atomic qubits via optical interferometry"/>
<attribute NAME="year" VALUE="2008"/>
<pdf_annotation type="PDF_FILE" object_id="0" document_hash="EC7B8E38D3C892B97C25111957499B4E316A2682A709F3A8DE8B8CAA36BB59">
<pdf_title>On-demand generation of entanglement of atomic qubits via optical interferometry</pdf_title>
</pdf_annotation>
</node>
</node>
</node>
<node TEXT="Nonlinear sign-flip gate with linear optics components" ID="ID_719784376" CREATED="1386628669700" MODIFIED="1386628704976">
<node TEXT="Quantum gates using linear optics and postselection" ID="ID_1511179846" CREATED="1386887521847" MODIFIED="1386887540541" LINK="project://13FA727FDA42AATC45LPZ5G3LUB2K3USM83Q/../../../References/Archive/Knill2002.pdf" TEXT_SHORTENED="true">
<attribute NAME="key" VALUE="Knill2002"/>
<attribute NAME="journal" VALUE="Physical Review A"/>
<attribute NAME="authors" VALUE="Knill, Emanuel"/>
<attribute NAME="title" VALUE="Quantum gates using linear optics and postselection"/>
<attribute NAME="year" VALUE="2002"/>
<pdf_annotation type="PDF_FILE" object_id="0" document_hash="2D2BC33F1F548511923EA2E3A433F0227B5CA61BF389C62F2656B7FAE1370">
<pdf_title>Quantum gates using linear optics and postselection</pdf_title>
</pdf_annotation>
</node>
</node>
<node TEXT="Applying other nonlinearities" ID="ID_1952155663" CREATED="1386779869857" MODIFIED="1386779883396">
<node TEXT="A Kerr effect based Fredkin gate" ID="ID_1936803931" CREATED="1386779885971" MODIFIED="1386779992688" TEXT_SHORTENED="true">
<attribute NAME="key" VALUE="Yamamoto1988"/>
<attribute NAME="authors" VALUE="Yamamoto, Y and Kitagawa, M and Igeta, K"/>
<attribute NAME="title" VALUE="Proceedings of the Third Asia-Pacific Physics Conference, Hong Kong, 1988"/>
<attribute NAME="year" VALUE="1988"/>
</node>
<node TEXT="Kerr effect based Fredkin gate 2" ID="ID_66340365" CREATED="1386780164223" MODIFIED="1386780198936" TEXT_SHORTENED="true" LINK="project://13FA727FDA42AATC45LPZ5G3LUB2K3USM83Q/../../../References/Archive/Milburn1989.pdf">
<attribute NAME="key" VALUE="Milburn1989"/>
<attribute NAME="journal" VALUE="Physical Review Letters"/>
<attribute NAME="authors" VALUE="Milburn, GJ"/>
<attribute NAME="title" VALUE="Quantum optical Fredkin gate"/>
<attribute NAME="year" VALUE="1989"/>
<pdf_annotation type="PDF_FILE" object_id="0" document_hash="AA601A73A74BAB767B91492EF0AA8CFD358ED25F7BB62A6BCA3AFE49165">
<pdf_title>"1"</pdf_title>
</pdf_annotation>
</node>
<node TEXT="Nonlinear quantum optical computing via measurement (cross-Kerr)" ID="ID_1678091222" CREATED="1386780393329" MODIFIED="1386780437651" LINK="project://13FA727FDA42AATC45LPZ5G3LUB2K3USM83Q/../../../References/Archive/Hutchinson2004.pdf" TEXT_SHORTENED="true">
<attribute NAME="key" VALUE="Hutchinson2004"/>
<attribute NAME="journal" VALUE="Journal of Modern Optics"/>
<attribute NAME="authors" VALUE="Hutchinson, GD and Milburn, GJ"/>
<attribute NAME="title" VALUE="Nonlinear quantum optical computing via measurement"/>
<attribute NAME="year" VALUE="2004"/>
<pdf_annotation type="PDF_FILE" object_id="0" document_hash="2BA913A485EFD722EBECD419827196EF12719D79E44AD153BBA6A921BC4B1D1">
<pdf_title>Journal of Modern Optics</pdf_title>
</pdf_annotation>
</node>
<node TEXT="Any nonlinear gate, with linear gates, suffices for computation" ID="ID_823705955" CREATED="1386780621803" MODIFIED="1386780646127" TEXT_SHORTENED="true">
<attribute NAME="key" VALUE="Lloyd1992"/>
<attribute NAME="journal" VALUE="Physics Letters A"/>
<attribute NAME="authors" VALUE="Lloyd, Seth"/>
<attribute NAME="title" VALUE="Any nonlinear gate, with linear gates, suffices for computation"/>
<attribute NAME="year" VALUE="1992"/>
</node>
</node>
<node TEXT="Quantum teleportation and single-qubit operations can make LOQC universal and feasible" ID="ID_1139940612" CREATED="1386628705807" MODIFIED="1386628764177"/>
<node TEXT="Photonic quantum simulators" ID="ID_1934931376" CREATED="1390851110457" MODIFIED="1390851120748">
<node TEXT="Photonic quantum simulators" ID="ID_978729158" CREATED="1390851133273" MODIFIED="1390851169515" LINK="project://13FA727FDA42AATC45LPZ5G3LUB2K3USM83Q/../../../References/Archive/Aspuru-Guzik2012.pdf" TEXT_SHORTENED="true">
<attribute NAME="key" VALUE="Aspuru-Guzik2012"/>
<attribute NAME="journal" VALUE="Nature Physics"/>
<attribute NAME="authors" VALUE="Aspuru-Guzik, Al{\'a}n and Walther, Philip"/>
<attribute NAME="title" VALUE="Photonic quantum simulators"/>
<attribute NAME="year" VALUE="2012"/>
<pdf_annotation type="BOOKMARK" page="1" object_id="5800028076428228641" object_number="8" document_hash="D62CD2FF72E7852398DCEC01D97A1564AAD1849719872A59AD81D7A61C43D79">
<pdf_title>Photonic quantum simulators</pdf_title>
</pdf_annotation>
<node TEXT="An associated talk is here" ID="ID_743945744" CREATED="1390851338533" MODIFIED="1390851353695" LINK="project://13FA727FDA42AATC45LPZ5G3LUB2K3USM83Q/../../../References/Archive/Walther2013.pdf" TEXT_SHORTENED="true">
<attribute NAME="key" VALUE="Walther2013"/>
<attribute NAME="journal" VALUE="CLEO: 2013"/>
<attribute NAME="authors" VALUE="Philip Walther"/>
<attribute NAME="title" VALUE="Photonic Quantum Simulators"/>
<attribute NAME="year" VALUE="2013"/>
<pdf_annotation type="PDF_FILE" object_id="0" document_hash="B00F4E174B78E9EA4AB3319339F2314C1ED618AB45993D42BB8EABCBB86D">
<pdf_title>Photonic Quantum Simulation</pdf_title>
</pdf_annotation>
</node>
</node>
</node>
</node>
</node>
<node TEXT="Implements and demonstrations" ID="ID_831663943" CREATED="1385418206129" MODIFIED="1385418226371">
<node TEXT="Linear Optical Quantum Computing in a Single Spatial Mode" ID="ID_1263334564" CREATED="1385427555389" MODIFIED="1385427568807" LINK="project://13FA727FDA42AATC45LPZ5G3LUB2K3USM83Q/../../../References/Archive/Humphreys2013.pdf" TEXT_SHORTENED="true" MOVED="1385427670877">
<attribute NAME="key" VALUE="Humphreys2013"/>
<attribute NAME="journal" VALUE="Phys. Rev. Lett."/>
<attribute NAME="authors" VALUE="Humphreys, Peter C. and Metcalf, Benjamin J. and Spring, Justin B. and Moore, Merritt and Jin, Xian-Min and Barbieri, Marco and Kolthammer, W. Steven and Walmsley, Ian A."/>
<attribute NAME="title" VALUE="Linear Optical Quantum Computing in a Single Spatial Mode"/>
<attribute NAME="year" VALUE="2013"/>
<pdf_annotation type="PDF_FILE" object_id="0" document_hash="DEEB31C0BE8920C8C9F3AE888D5DC53291B7B589372CB9D6ACF6DE8549A2FF4F">
<pdf_title>Linear Optical Quantum Computing in a Single Spatial Mode</pdf_title>
</pdf_annotation>
</node>
<node TEXT="Manipulation of multiphoton entanglement in waveguide quantum circuits" ID="ID_1227087598" CREATED="1385490513180" MODIFIED="1385490526341" LINK="project://13FA727FDA42AATC45LPZ5G3LUB2K3USM83Q/../../../References/Archive/Matthews2009-s1.pdf" TEXT_SHORTENED="true">
<attribute NAME="key" VALUE="Matthews2009"/>
<attribute NAME="journal" VALUE="Nature photonics"/>
<attribute NAME="authors" VALUE="Matthews, Jonathan CF and Politi, Alberto and Stefanov, Andr{\'e} and O'Brien, Jeremy L"/>
<attribute NAME="title" VALUE="Manipulation of multiphoton entanglement in waveguide quantum circuits"/>
<attribute NAME="year" VALUE="2009"/>
<pdf_annotation type="PDF_FILE" object_id="0" document_hash="BDE1CAC65F81F99578722C22784D4DFA5D67E1DD205233F9D540F2228905ED8">
<pdf_title>SUPPLEMENTARY INFORMATION</pdf_title>
</pdf_annotation>
</node>
<node TEXT="Demonstration of an all-optical quantum controlled-NOT gate" ID="ID_1493854136" CREATED="1385489833420" MODIFIED="1385489859234" LINK="project://13FA727FDA42AATC45LPZ5G3LUB2K3USM83Q/../../../References/Archive/OBrien2003.pdf" TEXT_SHORTENED="true">
<attribute NAME="key" VALUE="OBrien2003"/>
<attribute NAME="journal" VALUE="Nature"/>
<attribute NAME="authors" VALUE="O'Brien, Jeremy L and Pryde, Geoffrey J and White, Andrew G and Ralph, Timothy C and Branning, David"/>
<attribute NAME="title" VALUE="Demonstration of an all-optical quantum controlled-NOT gate"/>
<attribute NAME="year" VALUE="2003"/>
<pdf_annotation type="PDF_FILE" object_id="0" document_hash="D9D583CD588B6DE858B27441CFAC7B4EB8CA8DD1EC6F8347DCF7C71C232071">
<pdf_title>Demonstration of an all-optical quantum controlled-NOT gate</pdf_title>
</pdf_annotation>
</node>
<node TEXT="Phase-controlled integrated photonic quantum circuits" ID="ID_246213439" CREATED="1390850871049" MODIFIED="1390850882484" LINK="project://13FA727FDA42AATC45LPZ5G3LUB2K3USM83Q/../../../References/Archive/Smith2009.pdf" TEXT_SHORTENED="true">
<attribute NAME="key" VALUE="Smith2009"/>
<attribute NAME="journal" VALUE="Opt. Express"/>
<attribute NAME="authors" VALUE="Brian J. Smith and Dmytro Kundys and Nicholas Thomas-Peter and P. G. R. Smith and I. A. Walmsley"/>
<attribute NAME="title" VALUE="Phase-controlled integrated photonic quantum circuits"/>
<attribute NAME="year" VALUE="2009"/>
<pdf_annotation type="PDF_FILE" object_id="0" document_hash="7E8366A779CD731D570C34D458210E0F821AF82852D97489C48AAB94A0A1">
<pdf_title>Phase-controlled integrated photonic quantum circuits</pdf_title>
</pdf_annotation>
</node>
<node TEXT="Silica-on-silicon waveguide quantum circuits" ID="ID_250364739" CREATED="1385488121120" MODIFIED="1385488130438" LINK="project://13FA727FDA42AATC45LPZ5G3LUB2K3USM83Q/../../../References/Archive/Politi2008.SOM.pdf" TEXT_SHORTENED="true">
<attribute NAME="key" VALUE="Politi2008"/>
<attribute NAME="journal" VALUE="Science"/>
<attribute NAME="authors" VALUE="Politi, Alberto and Cryan, Martin J and Rarity, John G and Yu, Siyuan and O'Brien, Jeremy L"/>
<attribute NAME="title" VALUE="Silica-on-silicon waveguide quantum circuits"/>
<attribute NAME="year" VALUE="2008"/>
<pdf_annotation type="PDF_FILE" object_id="0" document_hash="2FFBF556CC45B8C12B14F9F54A5C16B9278356D1D03AAF4C181B68AD8D752E2D">
<pdf_title>Supporting Online Material for</pdf_title>
</pdf_annotation>
</node>
<node TEXT="Demonstration of a Compiled Version of Shor's Quantum Factoring Algorithm Using Photonic Qubits" ID="ID_1837362938" CREATED="1385418228128" MODIFIED="1385418240797" LINK="project://13FA727FDA42AATC45LPZ5G3LUB2K3USM83Q/../../../References/Archive/Lu2007.pdf" TEXT_SHORTENED="true">
<attribute NAME="key" VALUE="Lu2007"/>
<attribute NAME="journal" VALUE="Phys. Rev. Lett."/>
<attribute NAME="authors" VALUE="Lu, Chao-Yang and Browne, Daniel E. and Yang, Tao and Pan, Jian-Wei"/>
<attribute NAME="title" VALUE="Demonstration of a Compiled Version of Shor's Quantum Factoring Algorithm Using Photonic Qubits"/>
<attribute NAME="year" VALUE="2007"/>
<pdf_annotation type="PDF_FILE" object_id="0" document_hash="33D74B8A475749B4CFDFD946F54D01988E9121AE379E790DFBDD249251540">
<pdf_title>Demonstration of a Compiled Version of Shor’s Quantum Factoring Algorithm Using Photonic Qubits</pdf_title>
</pdf_annotation>
</node>
<node TEXT="Experimental Quantum Computing to Solve Systems of Linear Equations" ID="ID_485308374" CREATED="1385418699632" MODIFIED="1385418787551" LINK="project://13FA727FDA42AATC45LPZ5G3LUB2K3USM83Q/../../../References/Archive/Cai2013.pdf" TEXT_SHORTENED="true">
<attribute NAME="key" VALUE="Cai2013"/>
<attribute NAME="journal" VALUE="Phys. Rev. Lett."/>
<attribute NAME="authors" VALUE="Cai, X.-D. and Weedbrook, C. and Su, Z.-E. and Chen, M.-C. and Gu, Mile and Zhu, M.-J. and Li, Li and Liu, Nai-Le and Lu, Chao-Yang and Pan, Jian-Wei"/>
<attribute NAME="title" VALUE="Experimental Quantum Computing to Solve Systems of Linear Equations"/>
<attribute NAME="year" VALUE="2013"/>
<pdf_annotation type="PDF_FILE" object_id="0" document_hash="F2A5AEB4EC5CD125AA9635BF20F588C9C3115CA4FB5B1A5AC83452311DF7CD2">
<pdf_title>X.-D. Cai, C. Weedbrook, Z.-E. Su, M.-C. Chen, Mile Gu, M.-J. Zhu, Li Li, * Nai-Le Liu,</pdf_title>
</pdf_annotation>
</node>
<node TEXT="Linear optical implementation of an ancilla-free quantum SWAP gate" ID="ID_293486431" CREATED="1385419669178" MODIFIED="1385419690205" LINK="project://13FA727FDA42AATC45LPZ5G3LUB2K3USM83Q/../../../References/Archive/Wang2010.pdf" TEXT_SHORTENED="true">
<attribute NAME="key" VALUE="Wang2010"/>
<attribute NAME="journal" VALUE="Physica Scripta"/>
<attribute NAME="authors" VALUE="Hong-Fu Wang and Xiao-Qiang Shao and Yong-Fang Zhao and Shou Zhang and Kyu-Hwang Yeon"/>
<attribute NAME="title" VALUE="Linear optical implementation of an ancilla-free quantum SWAP gate"/>
<attribute NAME="year" VALUE="2010"/>
<pdf_annotation type="PDF_FILE" object_id="0" document_hash="CA1B81D3B8E6AF1A3BD9D4C8D9345DC287E33F4A2C69F21345EE0FB4AE469">
<pdf_title>Linear optical implementation of an ancilla-free quantum SWAP gate</pdf_title>
</pdf_annotation>
</node>
<node TEXT="Integrated waveguide circuits for optical quantum computing" ID="ID_1224556137" CREATED="1385421414244" MODIFIED="1385421425630" LINK="project://13FA727FDA42AATC45LPZ5G3LUB2K3USM83Q/../../../References/Archive/Thompson2011.pdf" TEXT_SHORTENED="true">
<attribute NAME="key" VALUE="Thompson2011"/>
<attribute NAME="journal" VALUE="IET circuits, devices \& systems"/>
<attribute NAME="authors" VALUE="Thompson, Mark G and Politi, Alberto and Matthews, Jonathan CF and O'Brien, Jeremy Lloyd"/>
<attribute NAME="title" VALUE="Integrated waveguide circuits for optical quantum computing"/>
<attribute NAME="year" VALUE="2011"/>
<pdf_annotation type="PDF_FILE" object_id="0" document_hash="45F642A8B6E6AC6A1FE10A8CD6A5F7479E98CCC97EB231C9E591444D50D8">
<pdf_title>Integrated waveguide circuits for optical quantum computing</pdf_title>
</pdf_annotation>
</node>
<node TEXT="Demonstration of an Optical Quantum Controlled-NOT Gate without Path
 Interference" ID="ID_196925602" CREATED="1385421632019" MODIFIED="1385421645061" LINK="project://13FA727FDA42AATC45LPZ5G3LUB2K3USM83Q/../../../References/Archive/Okamoto2005.pdf" TEXT_SHORTENED="true">
<attribute NAME="key" VALUE="Okamoto2005"/>
<attribute NAME="journal" VALUE="Phys. Rev. Lett."/>
<attribute NAME="authors" VALUE="Okamoto, Ryo and Hofmann, Holger F. and Takeuchi, Shigeki and Sasaki, Keiji"/>
<attribute NAME="title" VALUE="Demonstration of an Optical Quantum Controlled-NOT Gate without Path Interference"/>
<attribute NAME="year" VALUE="2005"/>
<pdf_annotation type="PDF_FILE" object_id="0" document_hash="5E2E259C47D4CA5A81289DCAB2C9E15A79CFB651E64C529F0593AB925D">
<pdf_title>Demonstration of an Optical Quantum Controlled-Gate without Path Interference</pdf_title>
</pdf_annotation>
</node>
<node TEXT="Efficient Experimental Estimation of Fidelity of Linear Optical Quantum
 Toffoli Gate" ID="ID_67165167" CREATED="1385425524958" MODIFIED="1385425537323" LINK="project://13FA727FDA42AATC45LPZ5G3LUB2K3USM83Q/../../../References/Archive/Miifmmodecheckcelsevcfiuda2013.pdf" TEXT_SHORTENED="true">
<attribute NAME="key" VALUE="Miifmmodecheckcelsevcfiuda2013"/>
<attribute NAME="journal" VALUE="Phys. Rev. Lett."/>
<attribute NAME="authors" VALUE="Mi\ifmmode \check{c}\else \v{c}\fi{}uda, M. and Sedl\'ak, M. and Straka, I. and Mikov\'a, M. and Du\ifmmode \check{s}\else \v{s}\fi{}ek, M. and Je\ifmmode \check{z}\else \v{z}\fi{}ek, M. and Fiur\'a\ifmmode \check{s}\else \v{s}\fi{}ek, J."/>
<attribute NAME="title" VALUE="Efficient Experimental Estimation of Fidelity of Linear Optical Quantum Toffoli Gate"/>
<attribute NAME="year" VALUE="2013"/>
<pdf_annotation type="PDF_FILE" object_id="0" document_hash="119E484EE7F490521E349992308090F9EBB4E5FA75520C7DC791316851CF5">
<pdf_title>M. Mic ˇuda, M. Sedla ´k, I. Straka, M. Mikova ´, M. Dus ˇek, M. Jez ˇek, and J. Fiura ´s ˇek</pdf_title>
</pdf_annotation>
</node>
<node TEXT="Realization of a Knill-Laflamme-Milburn controlled-NOT photonic quantum
 circuit combining effective optical nonlinearities" ID="ID_267068272" CREATED="1385426810701" MODIFIED="1385426824537" LINK="project://13FA727FDA42AATC45LPZ5G3LUB2K3USM83Q/../../../References/Archive/Okamoto2011.pdf" TEXT_SHORTENED="true">
<attribute NAME="key" VALUE="Okamoto2011"/>
<attribute NAME="journal" VALUE="Proceedings of the National Academy of Sciences"/>
<attribute NAME="authors" VALUE="Okamoto, Ryo and O’Brien, Jeremy L. and Hofmann, Holger F. and Takeuchi, Shigeki"/>
<attribute NAME="title" VALUE="Realization of a Knill-Laflamme-Milburn controlled-NOT photonic quantum circuit combining effective optical nonlinearities"/>
<attribute NAME="year" VALUE="2011"/>
<pdf_annotation type="PDF_FILE" object_id="0" document_hash="AD6B4A5824D57486C736CAF0F19C4AF1FB1B994BFA60D8A62CBB7E959EE99EAC">
<pdf_title>Realization of a Knill-Laflamme-Milburn controlled- NOT photonic quantum circuit combining effective optical nonlinearities</pdf_title>
</pdf_annotation>
</node>
<node TEXT="Multiphoton quantum interference in a multiport integrated photonic
 device" ID="ID_1882280356" CREATED="1390850128611" MODIFIED="1390850145357" LINK="project://13FA727FDA42AATC45LPZ5G3LUB2K3USM83Q/../../../References/Archive/Metcalf2013.pdf" TEXT_SHORTENED="true">
<attribute NAME="key" VALUE="Metcalf2013"/>
<attribute NAME="journal" VALUE="Nature communications"/>
<attribute NAME="authors" VALUE="Metcalf, Benjamin J and Thomas-Peter, Nicholas and Spring, Justin B and Kundys, Dmytro and Broome, Matthew A and Humphreys, Peter C and Jin, Xian-Min and Barbieri, Marco and Kolthammer, W Steven and Gates, James C and others"/>
<attribute NAME="title" VALUE="Multiphoton quantum interference in a multiport integrated photonic device"/>
<attribute NAME="year" VALUE="2013"/>
<pdf_annotation type="PDF_FILE" object_id="0" document_hash="D7CE4AB2C58B22B9A3EF54085F6C22D3AF544AA3D98733F565135581272654">
<pdf_title>Multiphoton quantum interference in a multiport integrated photonic device</pdf_title>
</pdf_annotation>
</node>
<node TEXT="Multimode quantum interference of photons in multiport integrated devices" ID="ID_965680575" CREATED="1390850399774" MODIFIED="1390850412609" LINK="project://13FA727FDA42AATC45LPZ5G3LUB2K3USM83Q/../../../References/Archive/Peruzzo2011.pdf" TEXT_SHORTENED="true">
<attribute NAME="key" VALUE="Peruzzo2011"/>
<attribute NAME="journal" VALUE="Nature communications"/>
<attribute NAME="authors" VALUE="Peruzzo, Alberto and Laing, Anthony and Politi, Alberto and Rudolph, Terry and O'Brien, Jeremy L"/>
<attribute NAME="title" VALUE="Multimode quantum interference of photons in multiport integrated devices"/>
<attribute NAME="year" VALUE="2011"/>
<pdf_annotation type="PDF_FILE" object_id="0" document_hash="A655D03CC3C84B3867552C76DA4BDEB7D61B2BFE97F23F45A444C4E194E3F25">
<pdf_title>multimode quantum interference of photons in multiport integrated devices</pdf_title>
</pdf_annotation>
</node>
<node TEXT="Integrated photonic quantum gates for polarization qubits" ID="ID_700428219" CREATED="1390850698074" MODIFIED="1390850713700" LINK="project://13FA727FDA42AATC45LPZ5G3LUB2K3USM83Q/../../../References/Archive/Crespi2011.pdf" TEXT_SHORTENED="true">
<attribute NAME="key" VALUE="Crespi2011"/>
<attribute NAME="journal" VALUE="Nature communications"/>
<attribute NAME="authors" VALUE="Crespi, Andrea and Ramponi, Roberta and Osellame, Roberto and Sansoni, Linda and Bongioanni, Irene and Sciarrino, Fabio and Vallone, Giuseppe and Mataloni, Paolo"/>
<attribute NAME="title" VALUE="Integrated photonic quantum gates for polarization qubits"/>
<attribute NAME="year" VALUE="2011"/>
<pdf_annotation type="PDF_FILE" object_id="0" document_hash="FC74D6951AFF6C8258F25F132C7BAE7A3790CD5ABCFBFEDDBBE14437D31C">
<pdf_title>Integrated photonic quantum gates for polarization qubits</pdf_title>
</pdf_annotation>
</node>
<node TEXT="Boson sampling" ID="ID_685903667" CREATED="1390857723649" MODIFIED="1390857727733">
<node TEXT="Photonic boson sampling in a tunable circuit" ID="ID_1997861774" CREATED="1390857729410" MODIFIED="1390857850274" LINK="project://13FA727FDA42AATC45LPZ5G3LUB2K3USM83Q/../../../References/Archive/Broome2013.pdf" TEXT_SHORTENED="true">
<attribute NAME="key" VALUE="Broome2013"/>
<attribute NAME="journal" VALUE="Science"/>
<attribute NAME="authors" VALUE="Broome, Matthew A and Fedrizzi, Alessandro and Rahimi-Keshari, Saleh and Dove, Justin and Aaronson, Scott and Ralph, Timothy C and White, Andrew G"/>
<attribute NAME="title" VALUE="Photonic boson sampling in a tunable circuit"/>
<attribute NAME="year" VALUE="2013"/>
<pdf_annotation type="PDF_FILE" object_id="0" document_hash="774414EAFB516C2B14F017F8371D41BB6DE0A96FA37A863EE15736A1552991">
<pdf_title>Photonic Boson Sampling in a Tunable Circuit</pdf_title>
</pdf_annotation>
</node>
<node TEXT="Boson sampling on a photonic chip" ID="ID_165641079" CREATED="1390858125454" MODIFIED="1390858136151" LINK="project://13FA727FDA42AATC45LPZ5G3LUB2K3USM83Q/../../../References/Archive/Spring2012.SM.pdf" TEXT_SHORTENED="true">
<attribute NAME="key" VALUE="Spring2013"/>
<attribute NAME="journal" VALUE="Science"/>
<attribute NAME="authors" VALUE="Spring, Justin B and Metcalf, Benjamin J and Humphreys, Peter C and Kolthammer, W Steven and Jin, Xian-Min and Barbieri, Marco and Datta, Animesh and Thomas-Peter, Nicholas and Langford, Nathan K and Kundys, Dmytro and others"/>
<attribute NAME="title" VALUE="Boson sampling on a photonic chip"/>
<attribute NAME="year" VALUE="2013"/>
<pdf_annotation type="PDF_FILE" object_id="0" document_hash="5C44492A67B6F0B7B48327C64B9DEF463ACD4D92D17552847959694CDCBED7">
<pdf_title>Supplementary Materials for</pdf_title>
</pdf_annotation>
</node>
<node TEXT="Experimental boson sampling in arbitrary integrated photonic circuits" ID="ID_669820948" CREATED="1390858256911" MODIFIED="1390858268117" LINK="project://13FA727FDA42AATC45LPZ5G3LUB2K3USM83Q/../../../References/Archive/Crespi2013.pdf" TEXT_SHORTENED="true">
<attribute NAME="key" VALUE="Crespi2013"/>
<attribute NAME="journal" VALUE="Nature Photonics"/>
<attribute NAME="authors" VALUE="{Crespi}, A. and {Osellame}, R. and {Ramponi}, R. and {Brod}, D.~J. and {Galv{\~a}o}, E.~F. and {Spagnolo}, N. and {Vitelli}, C. and {Maiorino}, E. and {Mataloni}, P. and {Sciarrino}, F."/>
<attribute NAME="title" VALUE="{Integrated multimode interferometers with arbitrary designs for photonic boson sampling}"/>
<attribute NAME="year" VALUE="2013"/>
<pdf_annotation type="PDF_FILE" object_id="0" document_hash="84EBEDA082D9A9E382E35CA07F4C79D4DC65E3151DDC1D1333A78BBEC935CCB">
<pdf_title>| |</pdf_title>
</pdf_annotation>
</node>
<node TEXT="Experimental Boson Sampling" ID="ID_1616556988" CREATED="1390858325757" MODIFIED="1390858437604" LINK="project://13FA727FDA42AATC45LPZ5G3LUB2K3USM83Q/../../../References/Archive/Tillmann2013.pdf" TEXT_SHORTENED="true">
<attribute NAME="key" VALUE="Tillmann2013"/>
<attribute NAME="journal" VALUE="Nature Photonics"/>
<attribute NAME="authors" VALUE="{Tillmann}, M. and {Daki{\'c}}, B. and {Heilmann}, R. and {Nolte}, S. and {Szameit}, A. and {Walther}, P."/>
<attribute NAME="title" VALUE="{Experimental boson sampling}"/>
<attribute NAME="year" VALUE="2013"/>
<pdf_annotation type="BOOKMARK" page="1" object_id="424797512534128487" object_number="4" document_hash="416CBE678315FC618E5CD5D7E469C93FD99A379AC55EF18AE489AE980145640">
<pdf_title>X D</pdf_title>
</pdf_annotation>
</node>
<node TEXT="Quantum Computing Using Optical Circuits May Blow Classical Computers Away (general science report)" ID="ID_1883115821" CREATED="1390858592251" MODIFIED="1390858615556" LINK="http://www.huffingtonpost.com/2012/12/25/quantum-computing-optical-circuits_n_2360145.html"/>
</node>
</node>
</node>
<node TEXT="Superconducting Circuits Systems" ID="ID_1265887725" CREATED="1372651379045" MODIFIED="1372651398544" MOVED="1372653953399">
<node TEXT="Building blocks and elements" ID="ID_357976114" CREATED="1373315540738" MODIFIED="1373315550806">
<node TEXT="Resistor" ID="ID_190260296" CREATED="1373315555026" MODIFIED="1373315564262"/>
<node TEXT="Capacitor" ID="ID_1729379055" CREATED="1373315564835" MODIFIED="1373315568983"/>
<node TEXT="Inductor" ID="ID_1822447673" CREATED="1373315569330" MODIFIED="1373315573287"/>
<node TEXT="Josephson Junctions" ID="ID_311939256" CREATED="1373315573714" MODIFIED="1373315587142">
<node TEXT="Energy splitting" ID="ID_664695634" CREATED="1373315605828" MODIFIED="1373315618006"/>
<node TEXT="Control freedom" ID="ID_1618629670" CREATED="1373315618482" MODIFIED="1373315625254"/>
</node>
</node>
<node TEXT="Characteristics" ID="ID_990845620" CREATED="1380346034398" MODIFIED="1380346041271">
<node TEXT="Quantum annealing signature of D-wave's system" ID="ID_262998760" CREATED="1380346043285" MODIFIED="1380346074765" LINK="project://13FA727FDA42AATC45LPZ5G3LUB2K3USM83Q/../../../References/Archive/Boixo2013Experimental.pdf" TEXT_SHORTENED="true">
<attribute NAME="key" VALUE="Boixo2013"/>
<attribute NAME="journal" VALUE="Nature Communications"/>
<attribute NAME="authors" VALUE="{Boixo}, S. and {Albash}, T. and {Spedalieri}, F.~M. and {Chancellor}, N. and {Lidar}, D.~A."/>
<attribute NAME="title" VALUE="{Experimental signature of programmable quantum annealing}"/>
<attribute NAME="year" VALUE="2013"/>
<pdf_annotation type="PDF_FILE" object_id="0" document_hash="3A37BE57FAD5E23BCA5A13B97D89E8FB2E3C329C1C9B31B8F2A7D899814BD2">
<pdf_title>{±} {↑↓}</pdf_title>
</pdf_annotation>
</node>
</node>
<node TEXT="Circuit-QED" ID="ID_1309303492" CREATED="1373315660034" MODIFIED="1373315668470">
<node TEXT="From Cavity-QED to Circuit-QED" ID="ID_851063182" CREATED="1373316059203" MODIFIED="1373316088852">
<node TEXT="Similarities" ID="ID_1151071818" CREATED="1373316088861" MODIFIED="1373316097957"/>
<node TEXT="Differences" ID="ID_1414756212" CREATED="1373316098386" MODIFIED="1373316104582">
<node TEXT="Coupling strengths (cavity~50KHz, circuit~1GHz)" ID="ID_1381476992" CREATED="1373316106883" MODIFIED="1373316143750"/>
</node>
</node>
<node TEXT="Typical circuits and configurations" ID="ID_783529387" CREATED="1373316706227" MODIFIED="1373316716470"/>
<node TEXT="Qubit unit" ID="ID_237571597" CREATED="1373316843699" MODIFIED="1373316850293"/>
<node TEXT="Jaynes-Cummings Hamiltonian and dynamics (no dispersion)" ID="ID_896490222" CREATED="1373316160419" MODIFIED="1373316763798">
<node TEXT="\latex $\hat{H}\approx \omega_r \hat{a}^\dagger \hat{a} + \frac{\omega_{01}}{2} \hat{\sigma}_z + g(\hat{a}^\dagger \hat{\sigma}^- + \hat{a}\hat{\sigma}^+))$" ID="ID_1200256511" CREATED="1373316363907" MODIFIED="1373316643184"/>
<node TEXT="large splitting" ID="ID_1726791746" CREATED="1373316658850" MODIFIED="1373316666774"/>
</node>
<node TEXT="Dispersive regime of the JC Hamiltonian and dynamics" ID="ID_465546950" CREATED="1373316764386" MODIFIED="1373316799619">
<node TEXT="Input-output theory for waveguide QED with an ensemble of inhomogeneous
 atoms" ID="ID_902368385" CREATED="1389744256497" MODIFIED="1389744294794" LINK="project://13FA727FDA42AATC45LPZ5G3LUB2K3USM83Q/../../../References/Archive/Lalumiere2013.pdf" TEXT_SHORTENED="true">
<attribute NAME="key" VALUE="Lalumiere2013"/>
<attribute NAME="journal" VALUE="\pra"/>
<attribute NAME="authors" VALUE="{Lalumi{\`e}re}, K. and {Sanders}, B.~C. and {van Loo}, A.~F. and {Fedorov}, A. and {Wallraff}, A. and {Blais}, A."/>
<attribute NAME="title" VALUE="{Input-output theory for waveguide QED with an ensemble of inhomogeneous atoms}"/>
<attribute NAME="year" VALUE="2013"/>
<pdf_annotation type="PDF_FILE" object_id="0" document_hash="38939D1CCEE69C82C2AEFBAF4B68B05BE77ED041A9CC2A7F1A6D5327A231CFF">
<pdf_title>Input-output theory for waveguide QED with an ensemble of inhomogeneous atoms</pdf_title>
</pdf_annotation>
</node>
</node>
<node TEXT="Many-qubit systems" ID="ID_843319470" CREATED="1373316976531" MODIFIED="1373317004487">
<node TEXT="Anticrossing" ID="ID_1703413037" CREATED="1373317116083" MODIFIED="1373317120406"/>
<node TEXT="Implementation of gates" ID="ID_325324451" CREATED="1373317213060" MODIFIED="1373317220502">
<node TEXT="Conditional phase gate" ID="ID_694019300" CREATED="1373317125090" MODIFIED="1373317155574" MOVED="1373317223230"/>
<node TEXT="Rotation gate" ID="ID_1417987069" CREATED="1373317186403" MODIFIED="1373317192373" MOVED="1373317225145"/>
</node>
</node>
<node TEXT="Generating highly entangled states" ID="ID_1942251470" CREATED="1373317005233" MODIFIED="1373317019350"/>
</node>
<node TEXT="Controlling superconducting quantum circuits" ID="ID_1208605640" CREATED="1373315672979" MODIFIED="1373315696725">
<node TEXT="State preparation" ID="ID_1033597501" CREATED="1373315699555" MODIFIED="1373315724998"/>
<node TEXT="Hamiltonians" ID="ID_874383111" CREATED="1373315725635" MODIFIED="1373315740999"/>
<node TEXT="Buses and couplers" ID="ID_1286121273" CREATED="1373315741651" MODIFIED="1373315758869"/>
<node TEXT="Driving control circuits" ID="ID_1674911973" CREATED="1373315875363" MODIFIED="1373315885671">
<node TEXT="Tunable flux" ID="ID_1946523041" CREATED="1373317026386" MODIFIED="1373317038197"/>
<node TEXT="Controllable voltages" ID="ID_1069860544" CREATED="1373317038739" MODIFIED="1373317056709">
<node TEXT="Optimal voltages" ID="ID_186186906" CREATED="1373317059651" MODIFIED="1373317078029"/>
</node>
</node>
<node TEXT="Measurements" ID="ID_261405110" CREATED="1373316893987" MODIFIED="1373316899189">
<node TEXT="Homodyne measurement" ID="ID_1830307156" CREATED="1373316900962" MODIFIED="1373316949781">
<arrowlink SHAPE="LINEAR_PATH" COLOR="#000000" WIDTH="2" TRANSPARENCY="80" FONT_SIZE="9" FONT_FAMILY="SansSerif" DESTINATION="ID_1198717124" STARTINCLINATION="66;0;" ENDINCLINATION="66;0;" STARTARROW="NONE" ENDARROW="DEFAULT"/>
</node>
<node TEXT="Tomography" ID="ID_656732709" CREATED="1373317160099" MODIFIED="1373317167383">
<node TEXT="Determine fidelity" ID="ID_663737953" CREATED="1373317169811" MODIFIED="1373317177590"/>
</node>
</node>
<node TEXT="Basic gates and operations" ID="ID_1471941885" CREATED="1373315759683" MODIFIED="1373484007610">
<node TEXT="Rotations" ID="ID_1562118400" CREATED="1373315815906" MODIFIED="1373315819653"/>
<node TEXT="Flip qubit" ID="ID_271110888" CREATED="1373316830818" MODIFIED="1373316838055"/>
<node TEXT="CZ-phi gate" ID="ID_220574152" CREATED="1373484010774" MODIFIED="1373484017959"/>
<node TEXT="Qubit readout and phase" ID="ID_1198717124" CREATED="1373316865315" MODIFIED="1373316880983"/>
</node>
<node TEXT="Spectroscopy and Pulse Tuning" ID="ID_1176773442" CREATED="1373317607891" MODIFIED="1373317624598">
<node TEXT="Circuit configuration" ID="ID_778480120" CREATED="1373317633602" MODIFIED="1373317641926"/>
<node TEXT="Hamiltonian" ID="ID_1859875902" CREATED="1373317642371" MODIFIED="1373317651238"/>
<node TEXT="Spectroscopy and dynamics" ID="ID_1776469724" CREATED="1373317651794" MODIFIED="1373317685029">
<node TEXT="Master equation discription" ID="ID_974177802" CREATED="1373317686291" MODIFIED="1373317702053"/>
</node>
<node TEXT="\latex $R_{ABI}$ high" ID="ID_222466428" CREATED="1373317704115" MODIFIED="1373317814739"/>
<node TEXT="\latex Ramsey \Delta-meter" ID="ID_1149424971" CREATED="1373317749875" MODIFIED="1373317788947"/>
<node TEXT="Test delay" ID="ID_1599988488" CREATED="1373317825314" MODIFIED="1373317830278"/>
<node TEXT="\latex Ramsey \phi-meter" ID="ID_240768403" CREATED="1373484029334" MODIFIED="1373484160737">
<arrowlink SHAPE="CUBIC_CURVE" COLOR="#000000" WIDTH="2" TRANSPARENCY="80" FONT_SIZE="9" FONT_FAMILY="SansSerif" DESTINATION="ID_220574152" STARTINCLINATION="229;0;" ENDINCLINATION="229;0;" STARTARROW="NONE" ENDARROW="DEFAULT"/>
</node>
</node>
</node>
<node TEXT="Challenges and future directions" ID="ID_427030031" CREATED="1373317257411" MODIFIED="1373317269510">
<node TEXT="Hybrid systems" ID="ID_276672063" CREATED="1373317273347" MODIFIED="1373317282021"/>
<node TEXT="\latex Improving $T_1$" ID="ID_1740800040" CREATED="1373317282546" MODIFIED="1373317337174">
<node TEXT="IBM's breakthrough: Al weak-field cavity coupling to impure dipoles" ID="ID_235816932" CREATED="1373317400179" MODIFIED="1373317510838"/>
<node TEXT="2D: increase width of fingers" ID="ID_728937322" CREATED="1373317539155" MODIFIED="1373317562438"/>
</node>
<node TEXT="Scalability" ID="ID_1323298869" CREATED="1373317350339" MODIFIED="1373317362150"/>
<node TEXT="Strong non-linear Quantum Optics" ID="ID_1418420096" CREATED="1373317373235" MODIFIED="1373317392213"/>
</node>
<node TEXT="State of art" ID="ID_1489669913" CREATED="1389716304156" MODIFIED="1389716322574">
<node TEXT="D-wave's machine" ID="ID_315966102" CREATED="1389716323803" MODIFIED="1389716331453">
<node TEXT="Dwave blog" ID="ID_194117543" CREATED="1389716332665" MODIFIED="1389716367730" LINK="http://dwave.wordpress.com/"/>
<node TEXT="Dwave homepage" ID="ID_1589622942" CREATED="1389716388297" MODIFIED="1389716398262" LINK="http://www.dwavesys.com/en/dw_homepage.html"/>
</node>
</node>
</node>
<node TEXT="Neutral Atom Systems" ID="ID_446584376" CREATED="1372647620021" MODIFIED="1372647643423" MOVED="1372653953412">
<node TEXT="Freedom of control" ID="ID_1227269499" CREATED="1378942646546" MODIFIED="1378942658391" MOVED="1378942704744">
<node TEXT="Center of mass" ID="ID_1105094015" CREATED="1378942661789" MODIFIED="1378942668837">
<node TEXT="Coherent transport in atom chips using waveguides" ID="ID_1652292218" CREATED="1378867048153" MODIFIED="1378867073840" LINK="project://13FA727FDA42AATC45LPZ5G3LUB2K3USM83Q/../../../References/Archive/Morgan2013Coherent1309.2451v1.pdf" TEXT_SHORTENED="true" MOVED="1378942681831">
<attribute NAME="key" VALUE="Morgan2013"/>
<attribute NAME="journal" VALUE="Arxiv preprint quant-ph/1309.2451"/>
<attribute NAME="authors" VALUE="Morgan, T. and {O'Riordan}, L. J. and Crowley, N. and {O'Sullivan}, B. and Busch, Th."/>
<attribute NAME="title" VALUE="Coherent transport by adiabatic passage on atom chips"/>
<attribute NAME="year" VALUE="2013"/>
<pdf_annotation type="PDF_FILE" object_id="0" document_hash="66A2B7F8C09C5A9A6332997BE6E44D476B383FC642533A075B212647FB862">
<pdf_title>Coherent transport by adiabatic passage on atom chips</pdf_title>
</pdf_annotation>
</node>
<node TEXT="Cooling atoms" ID="ID_1992885508" CREATED="1385589780053" MODIFIED="1385589786167">
<node TEXT="Stochastic Models of Atom-Photon Dynamics with Applications to Cooling Quantum Gases" ID="ID_12257989" CREATED="1385589787383" MODIFIED="1385589916299" LINK="project://13FA727FDA42AATC45LPZ5G3LUB2K3USM83Q/../../../References/Archive/Dunn2007_thesis.pdf" TEXT_SHORTENED="true">
<attribute NAME="key" VALUE="Dunn2007"/>
<attribute NAME="authors" VALUE="Dunn, Josh W"/>
<attribute NAME="title" VALUE="Stochastic Models of Atom-Photon Dynamics with Applications to Cooling Quantum Gases"/>
<attribute NAME="year" VALUE="2007"/>
<pdf_annotation type="PDF_FILE" object_id="0" document_hash="3589451CD9889855C4E1C8D84F3BB73CBE5F79E165F4EDEB3F4C65DA7F2E20">
<pdf_title>Stochastic Models of Atom-Photon Dynamics with</pdf_title>
</pdf_annotation>
</node>
</node>
</node>
<node TEXT="Spin flipping" ID="ID_1421691686" CREATED="1378942729448" MODIFIED="1378942741139"/>
<node TEXT="Spin squeezing" ID="ID_995688643" CREATED="1378942743082" MODIFIED="1378942747926"/>
<node TEXT="Spin-photon (polariton) correlation" ID="ID_1945707320" CREATED="1378942768177" MODIFIED="1378942801544"/>
</node>
<node TEXT="Fundamental theories and proposals" ID="ID_1419579235" CREATED="1378867034299" MODIFIED="1385428280410">
<node TEXT="Synthesis of multivalued quantum logic circuits by elementary gates" ID="ID_1351463595" CREATED="1385425926783" MODIFIED="1385425951026" LINK="project://13FA727FDA42AATC45LPZ5G3LUB2K3USM83Q/../../../References/Archive/Di2013.pdf" TEXT_SHORTENED="true">
<attribute NAME="key" VALUE="Di2013"/>
<attribute NAME="journal" VALUE="Phys. Rev. A"/>
<attribute NAME="authors" VALUE="Di, Yao-Min and Wei, Hai-Rui"/>
<attribute NAME="title" VALUE="Synthesis of multivalued quantum logic circuits by elementary gates"/>
<attribute NAME="year" VALUE="2013"/>
<pdf_annotation type="PDF_FILE" object_id="0" document_hash="13D1ADC33CF57F392E922967D2D2D626EE3511F9A14E66491A5F673C43FF6">
<pdf_title>Synthesis of multivalued quantum logic circuits by elementary gates</pdf_title>
</pdf_annotation>
</node>
<node TEXT="Quantum computers on multiatomic ensembles in quantum electrodynamic cavity" ID="ID_1536624445" CREATED="1385428283898" MODIFIED="1385428629806" LINK="project://13FA727FDA42AATC45LPZ5G3LUB2K3USM83Q/../../../References/Archive/Andrianov2012.pdf" TEXT_SHORTENED="true">
<attribute NAME="key" VALUE="Andrianov2012"/>
<attribute NAME="journal" VALUE="Optics and Spectroscopy"/>
<attribute NAME="authors" VALUE="Andrianov, S.N. and Moiseev, S.A."/>
<attribute NAME="title" VALUE="Quantum computers on multiatomic ensembles in quantum electrodynamic cavity"/>
<attribute NAME="year" VALUE="2012"/>
<pdf_annotation type="PDF_FILE" object_id="0" document_hash="D6A85F889B752E63D896B209BA9B44A5E614016A8B047C7AC91665E92CE9364">
<pdf_title>Quantum Computers on Multiatomic Ensembles in Quantum Electrodynamic Cavity</pdf_title>
</pdf_annotation>
</node>
<node TEXT="Storage and Retrieval of a Weak Optical Signal Improved by Spontaneously
 Generated Coherence in an Atomic Assemble" ID="ID_1517772449" CREATED="1385428984473" MODIFIED="1385429001281" LINK="project://13FA727FDA42AATC45LPZ5G3LUB2K3USM83Q/../../../References/Archive/Tao2012.pdf" TEXT_SHORTENED="true">
<attribute NAME="key" VALUE="Tao2012"/>
<attribute NAME="journal" VALUE="Communications in Theoretical Physics"/>
<attribute NAME="authors" VALUE="Zheng Tao and Qiu Tian-Hui and Yang Guo-Jian"/>
<attribute NAME="title" VALUE="Storage and Retrieval of a Weak Optical Signal Improved by Spontaneously Generated Coherence in an Atomic Assemble"/>
<attribute NAME="year" VALUE="2012"/>
<pdf_annotation type="PDF_FILE" object_id="0" document_hash="1AD7669C271E61E675F0776302E6B72EA95B06B5B81C14C49AF7EBBFBA44DB">
<pdf_title>Storage and Retrieval of a Weak Optical Signal Improved by Spontaneously Generated</pdf_title>
</pdf_annotation>
</node>
<node TEXT="Storing High-Dimensional Quantum States in a Cold Atomic Ensemble" ID="ID_81545086" CREATED="1390855437131" MODIFIED="1390855448370" LINK="project://13FA727FDA42AATC45LPZ5G3LUB2K3USM83Q/../../../References/Archive/Ding2013.pdf" TEXT_SHORTENED="true">
<attribute NAME="key" VALUE="Ding2013"/>
<attribute NAME="journal" VALUE="ArXiv e-prints"/>
<attribute NAME="authors" VALUE="{Ding}, D.-S. and {Zhang}, W. and {Zhou}, Z.-Y. and {Pan}, J.-S. and {Xiang}, G.-Y. and {Shi}, B.-S. and {Guo}, G.-C."/>
<attribute NAME="title" VALUE="{Storing High-Dimensional Quantum States in a Cold Atomic Ensemble}"/>
<attribute NAME="year" VALUE="2013"/>
<pdf_annotation type="PDF_FILE" object_id="0" document_hash="75DBA4517750D821C4E6CA5F215199AB02A9D18A511FE1DFE9EEB2AED07730">
<pdf_title>Storing High-Dimensional Quantum States in a</pdf_title>
</pdf_annotation>
</node>
</node>
</node>
<node TEXT="Ion Systems" ID="ID_182697708" CREATED="1372647644292" MODIFIED="1372647652153" MOVED="1372653953426">
<node TEXT="Preparation" ID="ID_1795043139" CREATED="1392591603962" MODIFIED="1392591625546"/>
<node TEXT="Control and functionality" ID="ID_1600805081" CREATED="1392591626397" MODIFIED="1392591640295"/>
<node TEXT="Measurement and tomography" ID="ID_397237501" CREATED="1392591640771" MODIFIED="1392591648639">
<node TEXT="Symplectic tomography of nonclassical states of a trapped ion" ID="ID_1347048958" CREATED="1392591652368" MODIFIED="1392591675753" LINK="project://13FA727FDA42AATC45LPZ5G3LUB2K3USM83Q/../../../References/Archive/Manko1996.pdf" TEXT_SHORTENED="true">
<arrowlink SHAPE="CUBIC_CURVE" COLOR="#000000" WIDTH="2" TRANSPARENCY="80" FONT_SIZE="9" FONT_FAMILY="SansSerif" DESTINATION="ID_1852615909" STARTINCLINATION="5502;0;" ENDINCLINATION="5502;0;" STARTARROW="NONE" ENDARROW="DEFAULT"/>
<attribute NAME="key" VALUE="Manko1996"/>
<attribute NAME="journal" VALUE="Journal of Russian Laser Research"/>
<attribute NAME="authors" VALUE="Manko, OV"/>
<attribute NAME="title" VALUE="Symplectic tomography of nonclassical states of a trapped ion"/>
<attribute NAME="year" VALUE="1996"/>
<pdf_annotation type="PDF_FILE" object_id="0" document_hash="A3D7D6A09B2076DED963C9A541579471A78C384C698EB6A3A4B68DCE289E8">
<pdf_title>1 Introduction</pdf_title>
</pdf_annotation>
</node>
</node>
</node>
<node TEXT="NMR Systems" FOLDED="true" ID="ID_611703365" CREATED="1372647652942" MODIFIED="1372647761594" MOVED="1372653953446">
<node TEXT="Chong1997TowardPersonalQuantumComputer.pdf" ID="ID_1224988735" CREATED="1372646570030" MODIFIED="1372651551898" LINK="project://13FA727FDA42AATC45LPZ5G3LUB2K3USM83Q/Archive/Chong1997TowardPersonalQuantumComputer.pdf" TEXT_SHORTENED="true" HGAP="50">
<pdf_annotation type="PDF_FILE" object_id="0" object_number="0"/>
<attribute NAME="key" VALUE="chong1997toward"/>
<attribute NAME="title" VALUE="Toward a personal quantum computer"/>
<attribute NAME="authors" VALUE="Chong, Henry {HW}"/>
<attribute NAME="year" VALUE="1997"/>
</node>
</node>
<node TEXT="Solid State Systems" ID="ID_1686355462" CREATED="1372647764805" MODIFIED="1372647779723" MOVED="1372653953461">
<node TEXT="Semiconductor Systems" ID="ID_1233769407" CREATED="1372647779732" MODIFIED="1372647795898">
<node TEXT="Quantum Dots" ID="ID_1622109932" CREATED="1372647874732" MODIFIED="1372647888647">
<node TEXT="Quantum optics and cavity QED with quantum dots in photonic crystals" ID="ID_1410537890" CREATED="1392244148882" MODIFIED="1392244164330" LINK="project://13FA727FDA42AATC45LPZ5G3LUB2K3USM83Q/../../../References/Archive/Vuckovic2014.pdf" TEXT_SHORTENED="true">
<attribute NAME="key" VALUE="Vuckovic2014"/>
<attribute NAME="journal" VALUE="ArXiv e-prints"/>
<attribute NAME="authors" VALUE="{Vuckovic}, J."/>
<attribute NAME="title" VALUE="{Quantum optics and cavity QED with quantum dots in photonic crystals}"/>
<attribute NAME="year" VALUE="2014"/>
<pdf_annotation type="PDF_FILE" object_id="0" document_hash="5D9A11D5679CEF9FE365E6C1EC69C47DA6D5DA76380DE1BB398C8F5B16BD7A9">
<pdf_title>( ) ( ) ( ) ( )</pdf_title>
</pdf_annotation>
<node TEXT="Lectures given at Les Houches 101th summer school on "Quantum Optics and Nanophotonics," August 2013. To be published by Oxford University Press. 37 pages" ID="ID_915830655" CREATED="1392244177191" MODIFIED="1392244184039"/>
</node>
</node>
<node TEXT="Quantum Wires" ID="ID_1921812492" CREATED="1372647890278" MODIFIED="1372647894460"/>
<node TEXT="Defects" ID="ID_1111179268" CREATED="1372647895396" MODIFIED="1372647914847"/>
</node>
<node TEXT="Diamond-defect Systems" ID="ID_512599576" CREATED="1372647798629" MODIFIED="1372647865040">
<node TEXT="Spin-oscillator system" ID="ID_871088361" CREATED="1389399627363" MODIFIED="1389399646383">
<node TEXT="Synchronizing the Dynamics of a Single Nitrogen Vacancy Spin Qubit
 on a Parametrically Coupled Radio-Frequency Field through Microwave Dressing" ID="ID_1697430403" CREATED="1389399800460" MODIFIED="1389399824526" LINK="project://13FA727FDA42AATC45LPZ5G3LUB2K3USM83Q/../../../References/Archive/Rohr2014.pdf" TEXT_SHORTENED="true">
<attribute NAME="key" VALUE="Rohr2014"/>
<attribute NAME="journal" VALUE="Phys. Rev. Lett."/>
<attribute NAME="authors" VALUE="Rohr, S. and Dupont-Ferrier, E. and Pigeau, B. and Verlot, P. and Jacques, V. and Arcizet, O."/>
<attribute NAME="title" VALUE="Synchronizing the Dynamics of a Single Nitrogen Vacancy Spin Qubit on a Parametrically Coupled Radio-Frequency Field through Microwave Dressing"/>
<attribute NAME="year" VALUE="2014"/>
<pdf_annotation type="PDF_FILE" object_id="0" document_hash="779EACB5411B8A6897A62A3F9A5C25AA5046593A8FB491EFCDF0B78D6147A2FE">
<pdf_title>Synchronizing the Dynamics of a Single Nitrogen Vacancy Spin Qubit on a Parametrically Coupled Radio-Frequency Field through Microwave Dressing</pdf_title>
</pdf_annotation>
<node TEXT="Good for force detection" ID="ID_1237651485" CREATED="1389399830073" MODIFIED="1389399840960"/>
</node>
</node>
<node TEXT="Error-Correction code" ID="ID_1822445272" CREATED="1389994215241" MODIFIED="1389994232507">
<node TEXT="Four-Coloring Model and Frustrated Superfluidity in the Diamond Lattice" ID="ID_1230346266" CREATED="1389994234039" MODIFIED="1389994283958" LINK="project://13FA727FDA42AATC45LPZ5G3LUB2K3USM83Q/../../../References/Archive/Chern2014.pdf" TEXT_SHORTENED="true">
<attribute NAME="key" VALUE="Chern2014"/>
<attribute NAME="journal" VALUE="Phys. Rev. Lett."/>
<attribute NAME="authors" VALUE="Chern, Gia-Wei and Wu, Congjun"/>
<attribute NAME="title" VALUE="Four-Coloring Model and Frustrated Superfluidity in the Diamond Lattice"/>
<attribute NAME="year" VALUE="2014"/>
<pdf_annotation type="PDF_FILE" object_id="0" document_hash="5493571E7462757D78BA1C3B6B48DAB8A96B6AB6ADB46F555A9D56A9A871896">
<pdf_title>Four-Coloring Model and Frustrated Superfluidity in the Diamond Lattice</pdf_title>
</pdf_annotation>
</node>
</node>
</node>
<node TEXT="Fundamental theories and reviews" ID="ID_986790304" CREATED="1385419243422" MODIFIED="1385419258049">
<node TEXT="Quantum computing by optical control of electron spins" ID="ID_821389865" CREATED="1385419262414" MODIFIED="1385419289417" LINK="project://13FA727FDA42AATC45LPZ5G3LUB2K3USM83Q/../../../References/Archive/Liu2010.pdf" TEXT_SHORTENED="true">
<attribute NAME="key" VALUE="Liu2010"/>
<attribute NAME="journal" VALUE="Advances in Physics"/>
<attribute NAME="authors" VALUE="Liu, Ren-Bao and Yao, Wang and Sham, L.J."/>
<attribute NAME="title" VALUE="Quantum computing by optical control of electron spins"/>
<attribute NAME="year" VALUE="2010"/>
<pdf_annotation type="PDF_FILE" object_id="0" document_hash="9EBF4FC197437B2FB80A4503E664970119CA47A971CB7623DC931DDC2AF1">
<pdf_title>Advances in Physics</pdf_title>
</pdf_annotation>
</node>
<node TEXT="Optimized dynamical decoupling in a model quantum memory" ID="ID_1059874496" CREATED="1390853986401" MODIFIED="1390853996633" LINK="project://13FA727FDA42AATC45LPZ5G3LUB2K3USM83Q/../../../References/Archive/Biercuk2009Optimized0nature07951.pdf" TEXT_SHORTENED="true">
<attribute NAME="key" VALUE="Biercuk2009"/>
<attribute NAME="journal" VALUE="Nature"/>
<attribute NAME="authors" VALUE="Biercuk, M.J. and Uys, H. and VanDevender, A.P. and Shiga, N. and Itano, W.M. and Bollinger, J.J."/>
<attribute NAME="title" VALUE="Optimized dynamical decoupling in a model quantum memory"/>
<attribute NAME="year" VALUE="2009"/>
<pdf_annotation type="PDF_FILE" object_id="0" document_hash="492895AD647D8F1B18ACCE87B6B168BF22376293A2B8E59513553EED67BB8A">
<pdf_title>LETTERS</pdf_title>
</pdf_annotation>
</node>
<node TEXT="Designing a practical high-fidelity long-time quantum memory" ID="ID_1710093003" CREATED="1390854309623" MODIFIED="1390854709692" LINK="project://13FA727FDA42AATC45LPZ5G3LUB2K3USM83Q/../../../References/Archive/Khodjasteh2013.pdf" TEXT_SHORTENED="true">
<arrowlink SHAPE="CUBIC_CURVE" COLOR="#000000" WIDTH="2" TRANSPARENCY="80" FONT_SIZE="9" FONT_FAMILY="SansSerif" DESTINATION="ID_1622908215" STARTINCLINATION="5529;0;" ENDINCLINATION="5529;0;" STARTARROW="NONE" ENDARROW="DEFAULT"/>
<attribute NAME="key" VALUE="Khodjasteh2013"/>
<attribute NAME="journal" VALUE="Nature Communications"/>
<attribute NAME="authors" VALUE="Khodjasteh, Kaveh and Sastrawan, Jarrah and Hayes, David and Green, Todd J and Biercuk, Michael J and Viola, Lorenza"/>
<attribute NAME="title" VALUE="Designing a practical high-fidelity long-time quantum memory"/>
<attribute NAME="year" VALUE="2013"/>
<pdf_annotation type="PDF_FILE" object_id="0" document_hash="C79A6377F31EB86733B4D2C5F8F74E03DCFEE70332FCCDA88E8428FD1D520A4">
<pdf_title>Designing a practical high-fidelity long-time quantum memory</pdf_title>
</pdf_annotation>
</node>
<node TEXT="Quantum computing gates via optimal control" ID="ID_88263237" CREATED="1390854891805" MODIFIED="1390854965193" LINK="project://13FA727FDA42AATC45LPZ5G3LUB2K3USM83Q/../../../References/Archive/Atia2013.pdf" TEXT_SHORTENED="true">
<arrowlink SHAPE="CUBIC_CURVE" COLOR="#000000" WIDTH="2" TRANSPARENCY="80" FONT_SIZE="9" FONT_FAMILY="SansSerif" DESTINATION="ID_406949683" STARTINCLINATION="5584;0;" ENDINCLINATION="5584;0;" STARTARROW="DEFAULT" ENDARROW="DEFAULT"/>
<attribute NAME="key" VALUE="Atia2013"/>
<attribute NAME="journal" VALUE="ArXiv e-prints"/>
<attribute NAME="authors" VALUE="{Atia}, Y. and {Elias}, Y. and {Mor}, T. and {Weinstein}, Y. "/>
<attribute NAME="title" VALUE="{Quantum Computing Gates via Optimal Control}"/>
<attribute NAME="year" VALUE="2013"/>
<pdf_annotation type="PDF_FILE" object_id="0" document_hash="C98FC497E1297FE69CCC04F2A35585CE04CA09A9261C7C84776C2B229549BF4">
<pdf_title>v 1 3 0 8 4 6 1 5 v 2 q u n p h 1 p 2 0 1 3</pdf_title>
</pdf_annotation>
</node>
</node>
</node>
<node TEXT="Hybrid Systems" ID="ID_1471398264" CREATED="1372647922620" MODIFIED="1372647954530" MOVED="1372653953474"/>
<node TEXT="Biological quantum computing" ID="ID_1798068093" CREATED="1389139537073" MODIFIED="1389139546257">
<node TEXT="Room temperature coherence and error correction" ID="ID_1496363262" CREATED="1389139656471" MODIFIED="1389139974067">
<node TEXT="Evolutionary Design in Biological Quantum Computing" ID="ID_408887214" CREATED="1389139690368" MODIFIED="1389139738157" LINK="project://13FA727FDA42AATC45LPZ5G3LUB2K3USM83Q/../../../References/Archive/Vattay2013.pdf" TEXT_SHORTENED="true">
<attribute NAME="key" VALUE="Vattay2013"/>
<attribute NAME="journal" VALUE="ArXiv e-prints"/>
<attribute NAME="authors" VALUE="{Vattay}, G. and {Kauffman}, S.~A."/>
<attribute NAME="title" VALUE="{Evolutionary Design in Biological Quantum Computing}"/>
<attribute NAME="year" VALUE="2013"/>
<pdf_annotation type="PDF_FILE" object_id="0" document_hash="937C8358BE8B02BBB5022DE2F7D49A654C8AF144BE25FFF20367673F0C162">
<pdf_title>X N</pdf_title>
</pdf_annotation>
</node>
</node>
</node>
</node>
</node>
<node TEXT="Circuit Level" ID="ID_91438071" CREATED="1372651579832" MODIFIED="1372657505437">
<node TEXT="Information Units and Representation Formats" ID="ID_1688161971" CREATED="1372652796844" MODIFIED="1372654737932">
<node TEXT="Qubit Format" ID="ID_1135081471" CREATED="1372652811690" MODIFIED="1372652833504"/>
<node TEXT="Qudit Format" ID="ID_10618511" CREATED="1372652834558" MODIFIED="1372652843708"/>
<node TEXT="Other Format" ID="ID_459460769" CREATED="1372652864190" MODIFIED="1372652871210"/>
</node>
<node TEXT="Universality of quantum circuits" ID="ID_692580009" CREATED="1373318099891" MODIFIED="1373318214973">
<arrowlink SHAPE="CUBIC_CURVE" COLOR="#000000" WIDTH="2" TRANSPARENCY="80" FONT_SIZE="9" FONT_FAMILY="SansSerif" DESTINATION="ID_520602865" STARTINCLINATION="763;0;" ENDINCLINATION="763;0;" STARTARROW="NONE" ENDARROW="DEFAULT"/>
<node TEXT="Efficient universal quantum circuits" ID="ID_1967428135" CREATED="1385416401880" MODIFIED="1385416426431" LINK="project://13FA727FDA42AATC45LPZ5G3LUB2K3USM83Q/../../../References/Archive/Bera2009EfficientQuantumCircuits_InCollection.pdf" TEXT_SHORTENED="true">
<attribute NAME="key" VALUE="Bera2009"/>
<attribute NAME="authors" VALUE="Bera, Debajyoti and Fenner, Stephen and Green, Frederic and Homer, Steve"/>
<attribute NAME="title" VALUE="Efficient universal quantum circuits"/>
<attribute NAME="year" VALUE="2009"/>
<pdf_annotation type="PDF_FILE" object_id="0" document_hash="AC53DFEA4BD4A79E95C3FCD54CBE849B08067AC2DBC972C345D74DE3D73ADE">
<pdf_title>Lecture Notes in Computer Science 5609</pdf_title>
</pdf_annotation>
</node>
<node TEXT="Universal programmable quantum circuit schemes to emulate an operator" ID="ID_1786721686" CREATED="1385416819897" MODIFIED="1385416847427" LINK="project://13FA727FDA42AATC45LPZ5G3LUB2K3USM83Q/../../../References/Archive/Daskin2012.pdf" TEXT_SHORTENED="true">
<attribute NAME="key" VALUE="Daskin2012"/>
<attribute NAME="journal" VALUE="The Journal of chemical physics"/>
<attribute NAME="authors" VALUE="Daskin, Anmer and Grama, Ananth and Kollias, Giorgos and Kais, Sabre"/>
<attribute NAME="title" VALUE="Universal programmable quantum circuit schemes to emulate an operator"/>
<attribute NAME="year" VALUE="2012"/>
<pdf_annotation type="PDF_FILE" object_id="0" document_hash="6EA7D06437AFCC96AE841EFD19C84DFAF88155FB481EA76AF3B4ADD2F2AE">
<pdf_title>Universal programmable quantum circuit schemes to emulate an operator</pdf_title>
</pdf_annotation>
</node>
<node TEXT="Quantum circuit model: power and limitation (thesis)" ID="ID_575040623" CREATED="1385417170677" MODIFIED="1385417194584" LINK="project://13FA727FDA42AATC45LPZ5G3LUB2K3USM83Q/../../../References/Archive/Bera2010thesis.pdf" TEXT_SHORTENED="true">
<attribute NAME="key" VALUE="Bera2010"/>
<attribute NAME="authors" VALUE="Bera, Debajyoti"/>
<attribute NAME="title" VALUE="Quantum circuits: power and limitations"/>
<attribute NAME="year" VALUE="2010"/>
<pdf_annotation type="PDF_FILE" object_id="0" document_hash="D861C8A522328132889619B5B241FD35843247E0D872625E9459E1AC373A366A">
<pdf_title>BOSTON UNIVERSITY</pdf_title>
</pdf_annotation>
</node>
</node>
<node TEXT="Basic Elements" ID="ID_253542098" CREATED="1372655797862" MODIFIED="1372655816459">
<node TEXT="Quantum Amplifier" ID="ID_60126901" CREATED="1372655817925" MODIFIED="1372655828897"/>
<node TEXT="Switchers and Addressing elements" ID="ID_202936834" CREATED="1372655830921" MODIFIED="1372655858590"/>
<node TEXT="Delays" ID="ID_1064030978" CREATED="1372655929926" MODIFIED="1372655933284"/>
<node TEXT="Attenuators" ID="ID_1026244280" CREATED="1372655933939" MODIFIED="1372655939486"/>
<node TEXT="Multipliers?" ID="ID_1390369414" CREATED="1372655955680" MODIFIED="1372656004768"/>
<node TEXT="Differentiators?" ID="ID_263623451" CREATED="1372656005472" MODIFIED="1372656030009"/>
<node TEXT="Clocks" ID="ID_1005808272" CREATED="1372656030855" MODIFIED="1372656051027"/>