-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathindex.html
More file actions
747 lines (690 loc) · 25.1 KB
/
index.html
File metadata and controls
747 lines (690 loc) · 25.1 KB
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
<!DOCTYPE html>
<html>
<head>
<meta charset="UTF-8">
<!-- link rel="shortcut icon" type="image/x-icon" href="https://production-assets.codepen.io/assets/favicon/favicon-8ea04875e70c4b0bb41da869e81236e54394d63638a1ef12fa558a4a835f1164.ico" />
<link rel="mask-icon" type="" href="https://production-assets.codepen.io/assets/favicon/logo-pin-f2d2b6d2c61838f7e76325261b7195c27224080bc099486ddd6dccb469b8e8e6.svg" color="#111" /-->
<meta name="robots" content="noindex">
<link rel='shortcut icon' type='image/x-icon' href='favicon.ico' />
<title>NetSciQCom 2022 - Network Science for Quantum Communication Networks</title>
<link
href="https://fonts.googleapis.com/css?family=Roboto:300,400,500,700"
rel="stylesheet">
<link rel='stylesheet prefetch'
href='https://cdnjs.cloudflare.com/ajax/libs/twitter-bootstrap/3.3.7/css/bootstrap.min.css'>
<style>
body {
background-color: #CCC;
font-family: 'Roboto', sans-serif;
}
.container {
background-color: white;
}
h3 {
margin-top: 0%;
}
#title {
background-size: cover;
padding: 2% 0%;
margin-top: 1%;
margin-bottom: 3%;
}
#title img {
max-width: 100%;
max-height: 100%;
}
#title p {
font-weight: 500;
}
#sidebar.affix-top {
position: static;
margin-top: 0px;
width: 180px;
}
#sidebar.affix {
position: fixed;
top: 45px;
width: 180px;
}
#sideNav ul {
padding: 0px;
}
#sideNav li {
list-style-type: none;
background-color: #ddd;
font-weight: 500;
border-left: solid;
border-width: 4px;
padding: 2% 0% 2% 5%;
margin-bottom: 3%;
}
#sideNav li:hover {
background-color: #FF7D00;
border-color: #F30000;
}
#sideNav a {
color: black;
}
#sideNav a:hover {
color: white;
text-decoration: none !important;
}
#usefulLinks ul {
padding: 0px;
}
#usefulLinks li {
list-style-type: none;
background-color: #ddd;
font-weight: 500;
padding: 2% 3% 2% 3%;
margin-bottom: 3%;
color: black;
}
#footer {
background-color: #CCC;
font-weight: 500;
padding: 2% 3% 2% 3%;
margin-top: 3%;
border-top: thick;
border-top-color: black;
color: black;
text-align: center;
}
#usefulLinks li:hover {
background-color: #FF7D00;
border-color: #F30000;
color: white;
text-decoration: none !important;
}
#usefulLinks a:hover {
color: white;
text-decoration: none !important;
}
#mainContent p {
text-align: justify;
text-justify: inter-word;
}
@media ( min-width : 800px) {
.container {
width: 800px;
}
}
ol {
margin-bottom: 5% !important;
}
.schedule_table {
width: 100%;
border: solid black 1px;
}
.time {
padding-left: 5px;
padding-right: 5px;
padding-top: 2px;
padding-bottom: 2px;
text-align: center;
font-weight: bolder;
border: solid #979a9a 1px;
}
.event {
padding-left: 5px;
padding-right: 5px;
padding-top: 5px;
padding-bottom: 5px;
text-align: center;
border: solid #979a9a 1px;
}
.session {
padding-left: 5px;
padding-right: 5px;
padding-top: 2px;
padding-bottom: 2px;
text-align: center;
border: solid #979a9a 1px;
}
.presenter {
padding-left: 5px;
padding-right: 5px;
padding-top: 5px;
padding-bottom: 5px;
text-align: center;
border: solid #979a9a 1px;
}
</style>
</head>
<body translate="no">
<div class='container'>
<div id='title' class='text-center'>
<h1>
<img src='images/ieee-infocom.png' /> NetSciQCom 2022
</h1>
<p>
The First International Workshop on Network Science for Quantum Communication Networks <br /> Virtual Conference
</p>
<img src='images/QuantumCommunication2A.jpg' />
</div>
<div class='row'>
<div class='col-xs-3'>
<div id="sidebar">
<h4>INFOCOM NetSciQCom 2022</h4>
<ul class="nav nav-stacked" id='sideNav'>
<a href='#scope'><li>SCOPE</li></a>
<a href='#callForPapers'><li>CALL FOR PAPERS</li></a>
<a href='#importantDates'><li>IMPORTANT DATES</li></a>
<a href='#submissionDetails'><li>SUBMISSION DETAILS</li></a>
<!--a href='#keynoteSpeaker'><li>KEYNOTE SPEAKER</li></a>
<a href='#invitedTalks'><li>INVITED TALKS</li></a-->
<!--a href='#workshopSchedule'><li>WORKSHOP SCHEDULE</li></a-->
<a href='#committee'><li>COMMITTEE</li></a>
<!--a href='#pastWorkshops'><li>PAST WORKSHOPS</li></a-->
</ul>
<h4>Quick Information</h4>
<ul style="padding-left: 10px; padding-top: 0px;">
<li><p class="text-muted" style="font-size: small;">
The NetSciQCom workshop is part of <a
href='https://infocom2022.ieee-infocom.org/'
target="_blank">INFOCOM 2022</a>
</p></li>
<li><p class="text-muted" style="font-size: small;">
Submission limit: <b>6 pages</b>
</p></li>
<li><p class="text-muted" style="font-size: small;">
Submit deadline: <b>18-January-2022</b>
</p></li>
<li><p class="text-muted" style="font-size: small;">
Submit your paper: <a
href="https://edas.info/N29246"><b>EDAS</b></a>
</p> </li-->
</ul>
</div>
</div>
<div class='col-xs-9' id='mainContent'>
<h3>Welcome!</h3>
<p>
The First <b>IEEE International Workshop on Network Science for Quantum Communication Networks</b> (NetSciQCom) will be held virtually in conjunction with <b><a
href="https://infocom2022.ieee-infocom.org/" target="_blank">INFOCOM 2022</a></b>.
</p>
<hr id='scope' />
<h3>Scope</h3>
<p>
Along with advances in the Quantum Computing domain, Quantum Communication has also made significant strides in the last twenty years, starting with DARPA Quantum Network effort in the first decade of the twenty-first century. The pace of advances in Quantum Communication/Networking has accelerated significantly in the second decade with efforts all across the world on advancing this important technology. Major efforts are currently underway, not only in the United States, but also in countries such as China, India, U.K., The Netherlands and Singapore.
<br> <br>
Network Science has been used to model the structure and dynamics of a wide variety of large-scale complex networks, including Internet connectivity, the WWW, peer-to-peer networks, and online social networks. The concepts from Network Science can play an equally important role in Quantum Communication as it has played in the classical communication. The topic of this workshop will be of particular relevance to the INFOCOM community, as Quantum Communication technology is going to play a major role in the computer communication in the future. Consequently, it’s extremely important to understand the physics of quantum communication, the higher layer protocols of classical communication as well as tools and techniques from Network Science to derive comprehensive benefit from the Quantum Communication technology.
<br> <br>
A deeper understanding of the interplay between multiple disciplines can only be achieved through closer interaction between physicists, mathematicians, network scientists and communication network designers. The goal of this workshop is to provide a forum for this diverse group of researchers to come together and exchange ideas leading to insights into the design of robust and complex quantum communication networks of the future.
</p>
<hr id='callForPapers' />
<h3>Call for Papers</h3>
<p>We solicit papers addressing the fundamental concepts and applications of network science, particularly as it intersects with the design of Quantum Communication Networks. We welcome theoretical approaches and data-driven approaches, as well as position papers. Topics of interest include, but are not limited to:</p>
<ul>
<li>Modelling, design and analysis of complex and interdependent (classical and quantum) communication networks</li>
<li>Information diffusion and knowledge transfer in networks, propagation studies, routing, traffic modelling</li>
<li>Algorithms for static, time-varying, and dynamic communication networks</li>
<li>Network robustness, phase transitions, security, privacy, trust in quantum communication networks</li>
<li>Economic aspects of Quantum Communication Networks, incentives, marketing </li>
<li>Quantum information theory - Entanglement-assisted multi-user quantum channels, Quantum error correction</li>
<li>Quantum repeaters, multipath and multiflow routing of entanglement, manipulating graph states, quantum network coding</li>
</ul>
<hr id='importantDates' />
<h3>Important Dates</h3>
<ul>
<li><b>Submission Deadline: January 18, 2022</b></li>
<li>Acceptance Notification: <del style="color:red">February 18, 2022</del> <b>February 24, 2022</b></li>
<li>Camera Ready: <del style="color:red">February 28, 2022</del> <b>March 2, 2022 5:00pm Eastern Time US</b></li>
<li>Workshop Date: TBD</li>
</ul>
<hr id='submissionDetails' />
<h3>Submission Details</h3>
<p>
Papers should contain original material, i.e., that has not been previously published or currently submitted elsewhere. Manuscripts must be limited to <b>6 pages</b> in IEEE 8.5x11 conference format, and formatted in strict accordance with the IEEE Communications Society author guidelines. All submissions will be handled electronically. The accepted and presented papers will be published in the IEEE INFOCOM 2022 workshop proceedings and appear in IEEE Xplore. Submissions must be submitted electronically in printable PDF form, via the submission site at: <b><a
href="https://edas.info/N29246">EDAS</a></b>
<!--Submissions will be reviewed by the program committee for presentation at the workshop. Revised versions of these submissions will be published in a special issue of <a
href="https://infocom2022.ieee-infocom.org/" target="_blank">Performance
Evaluation Review</a> (PER), with a due date after the workshop making
it possible for authors to incorporate the results of, or simply
mention, any relevant discussions at the workshop. -->
</p>
<!--hr id='keynoteSpeaker' /-->
<!--<h3>Keynote Speaker</h3>-->
<!-- p style="text-align: center;"><i>To be announced</i></p-->
<!--p style="padding-left: 1.8em;">
<a href='http://faculty.engineering.asu.edu/vvittal/'
target="_blank">Prof. Vijay Vittal</a>, Arizona State University,
USA
</p-->
<!--hr id='invitedTalks' /hr-->
<!--h3>Invited Talks</h3-->
<!-- p style="text-align: center;"><i>To be announced</i></p-->
<!--ul>
<li>
<p>
<b>Invited Talk 1</b>
</p>
<p style="padding-left: 1.8em;">
<a
href='https://www.pnnl.gov/science/staff/staff_info.asp?staff_num=8787'
target="_blank">Dr. Samrat Chatterjee</a>, Pacific Northwest
National Laboratories, USA
</p>
</li>
<li>
<p>
<b>Invited Talk 2</b>
</p>
<p style="padding-left: 1.8em;">
<a href='https://isearch.asu.edu/profile/1981721' target="_blank">Prof.
Oliver Kosut</a>, Arizona State University, USA
</p>
</li>
<li>
<p>
<b>Invited Talk 3</b>
</p>
<p style="padding-left: 1.8em;">
<a href='http://tonghanghang.org/' target="_blank">Prof.
Hanghang Tong</a>, University of Illinois at Urbana-Champaign, USA
</p>
</li>
<li>
<p>
<b>Invited Talk 4</b>
</p>
<p style="padding-left: 1.8em;">
<a href='http://www.kkant.net/' target="_blank">Prof.
Krishna Kant</a>, Temple University, USA
</p>
</li>
<li>
<p>
<b>Invited Talk 5</b>
</p>
<p style="padding-left: 1.8em;">
<a href='https://fernandokuipers.nl/' target="_blank">Prof.
Fernando Kuipers</a>, Delft University of Technology, The
Netherlands
</p>
</li>
<li>
<p>
<b>Invited Talk 6</b>
</p>
<p style="padding-left: 1.8em;">
<a href='https://ecee.engineering.asu.edu/project/anamitra-pal/'
target="_blank">Prof. Anamitra Pal</a>, Arizona State
University, USA
</p>
</li>
<li>
<p>
<b>Invited Talk 7</b>
</p>
<p style="padding-left: 1.8em;">
<a href='http://www.arundas.net/' target="_blank">Dr. Arun
Das</a>, Visa Inc., USA
</p>
</li>
</ul-->
<!--hr id='workshopSchedule' /hr-->
<!--h3>Workshop Schedule</h3-->
<!--table>
<tr>
<td nowrap style="padding: 4px"><b>Date:</b></td>
<td style="padding: 4px;">June 28, 2019</td>
</tr>
<tr>
<td nowrap valign="top" style="padding: 4px"><b>Location:</b></td>
<td style="padding: 4px">Room 227C, <a
href="https://www.phoenixconventioncenter.com/">Phoenix
Convention Center</a> (<a
href="https://goo.gl/maps/yPxfDRofcP8eUc8m7">Google Maps</a>), <br />Phoenix,
Arizona, USA
</td>
</tr>
</table-->
<!--br /-->
<!-- p style="text-align: center;">
<i>To be announced</i>
</p -->
<!--table class="schedule_table">
<tr>
<td class="event" colspan="3"
style="background: #a9cce3; color: black"><b>June 28<sup>th</sup>,
2019<br />Room 227C, <a
href="https://www.phoenixconventioncenter.com" target="_blank">Phoenix
Convention Center</a>, Phoenix, Arizona, USA
</b></td>
</tr>
<tr>
<td nowrap class="time" style="background: #ddd;">08:00 -
09:00</td>
<td class="event" colspan="2" style="background: #ddd;"><b>Breakfast
& Registration</b></td>
</tr>
<tr>
<td nowrap class="session" colspan="3"
style="background: #FDFDF0;"><b>Session 1</b></td>
</tr>
<tr>
<td class="time">09:00 - 09:05</td>
<td class="event">Welcome</td>
<td class="presenter">
<table style="width: 100%">
<tr>
<td style="width: 50%"><b>My T. Thai</b><br />University
of Florida, USA</td>
<td style="width: 50%"><b>Arun Sen</b><br />Arizona State
University, USA</td>
</table>
</td>
</tr>
<tr>
<td class="time">09:05 - 10:00</td>
<td class="event">Keynote Talk</td>
<td class="presenter"><i>Electricity and Water do Mix:
Interdependent Electric and Water Infrastructure Modeling,
Optimization and Control</i> <br /> <b>Vijay Vittal</b><br />Arizona
State University, USA</td>
</tr>
<tr>
<td nowrap class="time" style="background: #ddd;">10:00 -
10:30</td>
<td class="event" colspan="2" style="background: #ddd;"><b>Coffee
Break</b></td>
</tr>
<tr>
<td nowrap class="session" colspan="3"
style="background: #FDFDF0;"><b>Session 2</b><br /> <span
style="font-size: small;">Session Chair: <b>Arun Das</b>,
Visa Inc., USA
</span></td>
</tr>
<tr>
<td class="time">10:30 - 11:00</td>
<td class="event">Invited Talk #1</td>
<td class="presenter"><i>Cyber-Based Contingency Analysis
of Interdependent Infrastructure Networks under Uncertainty</i><br />
<b>Samrat Chatterjee</b><br />Pacific Northwest National
Laboratories, USA</td>
</tr>
<tr>
<td class="time">11:00 - 11:30</td>
<td class="event">Invited Talk #2</td>
<td class="presenter"><i>Evaluating the Vulnerability of
Energy Management Systems to False Data Injection Attacks</i><br />
<b>Oliver Kosut</b><br />Arizona State University, USA</td>
</tr>
<tr>
<td class="time">11:30 - 12:00</td>
<td class="event">Invited Talk #3</td>
<td class="presenter"><i>Deep Network Mining: Exploring
the Power and Beauty of Network of Networks</i><br /> <b>Hanghang
Tong</b><br />University of Illinois at Urbana-Champaign, USA</td>
</tr>
<tr>
<td class="time">12:00 - 12:30</td>
<td class="event">Invited Talk #4</td>
<td class="presenter"><i>Advanced Persistent Threats in
Autonomous Driving</i><br /> <b>Krishna Kant</b><br />Temple
University, USA</td>
</tr>
<tr>
<td nowrap class="time" style="background: #ddd;">12:30 -
13:30</td>
<td class="event" colspan="2" style="background: #ddd;"><b>Lunch
Break</b></td>
</tr>
<tr>
<td nowrap class="session" colspan="3"
style="background: #FDFDF0;"><b>Session 3</b><br /> <span
style="font-size: small;">Session Chair: <b>Samrat
Chatterjee</b>, Pacific Northwest National Laboratories, USA
</span></td>
</tr>
<tr>
<td class="time">13:30 - 14:00</td>
<td class="event">Invited Talk #5</td>
<td class="presenter"><i>Network Vulnerability after a
Natural Disaster</i><br /> <b>Fernando Kuipers</b><br />Delft
University of Technology, The Netherlands</td>
</tr>
<tr>
<td class="time">14:00 - 14:30</td>
<td class="event">Invited Talk #6</td>
<td class="presenter"><i>Identifying Unique Power System
Signatures for Determining Vulnerability of Critical Power
System Assets</i><br /> <b>Anamitra Pal</b><br />Arizona State
University, USA</td>
</tr>
<tr>
<td class="time">14:30 - 15:00</td>
<td class="event">Invited Talk #7</td>
<td class="presenter"><i>Smallest Pseudo Target Set
Identification and Related Problems Using the Implicative
Interdependency Model</i><br /> <b>Arun Das</b><br />Visa Inc.,
USA</td>
</tr>
<tr>
<td nowrap class="time" style="background: #ddd;">15:00 -
15:30</td>
<td class="event" colspan="2" style="background: #ddd;"><b>Coffee
Break</b></td>
</tr>
<tr>
<td nowrap class="session" colspan="3"
style="background: #FDFDF0;"><b>Session 4</b><br /> <span
style="font-size: small;">Session Chair: <b>Fernando
Kuipers</b>, Delft University of Technology, The Netherlands
</span></td>
</tr>
<tr>
<td class="time">15:30 - 15:50</td>
<td class="event">Contributed Talk #1</td>
<td class="presenter"><i>Less is More: Real-time Failure
Localization in Power Systems</i><br /> <b>Chen Liang</b><br />California
Institute of Technology, USA</td>
</tr>
<tr>
<td class="time">15:50 - 16:10</td>
<td class="event">Contributed Talk #2</td>
<td class="presenter"><i>Scheduling Post-disaster Repairs
in Electricity Distribution Networks with Uncertain Repair Times</i>
<br /> <b>Y. Tan</b><sup>1</sup>, <b>A. K. Das</b><sup>2</sup>,
<b>M. Ahumada-Paras</b><sup>1</sup>, <b>P. Arabshahi</b><sup>1</sup>
and <b>D. S. Kirschen</b><sup>1</sup><br /> University of
Washington<sup>1</sup>, USA<br /> Eastern Washington University<sup>2</sup>,
USA</td>
</tr>
<tr>
<td class="time">16:10 - 16:30</td>
<td class="event">Contributed Talk #3</td>
<td class="presenter"><i>Cascading Failures in
Interconnected Power-to-Water Networks</i> <br /> <b>E.
Pournaras</b><sup>1</sup>, <b>R. Taormina</b><sup>2</sup>, <b>M.
Thapa</b><sup>1</sup>, <b>S. Galelli</b><sup>2</sup>, <b>V. R.
Palleti</b><sup>2</sup>, and <b>R. Kooij</b><sup>2, 3</sup> <br />ETH
Zurich<sup>1</sup>, Zurich, Switzerland <br />Singapore
University of Technology and Design<sup>2</sup>, Singapore <br />Delft
University of Technology<sup>3</sup>, The Netherlands</td>
</tr>
<tr>
<td class="time">16:30 - 16:50</td>
<td class="event">Contributed Talk #4</td>
<td class="presenter"><i>Optimal Monitoring Strategies
for Critical Infrastructure Networks</i> <br /> <b>K. Palani</b>,
and <b> D. M. Nicol</b><br />University of Illinois at
Urbana-Champaign, USA</td>
</tr>
<tr>
<td class="time">17:00 - 17:20</td>
<td class="event">Contributed Talk #4</td>
<td class="presenter"><i>Vulnerability of Interdependent
Infrastructures Under Random Attacks</i> <br /> <b>H.
Khamfroush</b><sup>1</sup>, <b>S. L. Iloo</b><sup>1</sup>, and <b>M.
Rahnamay-Naeini</b><sup>2</sup><br />University of Kentucky<sup>1</sup>,
USA<br />University of South Florida<sup>2</sup>, USA</td>
</tr>
<tr>
<td class="time">17:20 - 18:20</td>
<td class="event">Panel Discussion</td>
<td class="presenter">
<table style="width: 100%">
<tr>
<td style="width: 33%" valign="top"><b>David <br />
Nicol
</b><br />University of Illinois at Urbana-Champaign</td>
<td style="width: 33%" valign="top"><b>Andjelka <br />
Kelic
</b><br />Sandia National Laboratories</td>
<td style="width: 33%" valign="top"><b>Auroop<br />
Ganguly
</b>Northeastern<br />University</td>
</table>
</td>
</tr>
<tr>
<td class="time">16:50 - 17:00</td>
<td class="event">Concluding Remarks</td>
<td class="presenter">
<table style="width: 100%">
<tr>
<td style="width: 50%"><b>My T. Thai</b><br />University
of Florida, USA</td>
<td style="width: 50%"><b>Arun Sen</b><br /> Arizona
State University, USA</td>
</table>
</td>
</tr>
</table>
</tr-->
<hr id='committee' />
<h3>Committee</h3>
<ul>
<li>
<p>
<b>Steering Committee </b>
</p>
<p style="padding-left: 1.8em;">
Dr. Nageswara Rao, Oak Ridge National Laboratory
</p>
<p style="padding-left: 1.8em;">
Dr. Saikat Guha, University of Arizona, USA
</p>
<p style="padding-left: 1.8em;">
Dr. Arun Sen, Arizona State University, USA
</p>
<p style="padding-left: 1.8em;">
Dr. Guoliang Xue, Arizona State University, USA
</p>
</li>
<li>
<p>
<b>Technical Program Committee Chairs</b>
</p>
<p style="padding-left: 1.8em;">
Dr. Nageswara Rao, Oak Ridge National Laboratory
</p>
<p style="padding-left: 1.8em;">
Dr. Arun Sen, Arizona State University, USA
</p>
</li>
<li>
<p>
<b>Program Committee Members</b>
</p>
<p style="padding-left: 1.8em;">
Dr. Biplab Sikdar, National University of Singapore, Singapore
</p>
<p style="padding-left: 1.8em;">
Dr. Kanu Sinha, Princeton University, USA
</p>
<p style="padding-left: 1.8em;">
Dr. Gil Zussman, Columbia University, USA
</p>
<p style="padding-left: 1.8em;">
Dr. Stefan Schmidt, Technical University of Berlin, Germany
</p>
<p style="padding-left: 1.8em;">
Dr. Victoria Goliber, D-Wave Systems, USA
</p>
<p style="padding-left: 1.8em;">
Dr. Urbasi Sinha, Raman Research Institute, India
</p>
<p style="padding-left: 1.8em;">
Dr. Joe Lukens, Oak Ridge National Laboratory, USA
</p>
<p style="padding-left: 1.8em;">
Dr. Raj Kettimuthu, Argonne National Laboratory, USA
</p>
<p style="padding-left: 1.8em;">
Dr. Prithwish Basu, Raytheon BBN Technologies, USA
</p>
</p>
</li>
<li>
<p>
<b>Web Chairs</b>
</p>
<p style="padding-left: 1.8em;">
Kaustav Basu, Arizona State University, USA
</p>
<p style="padding-left: 1.8em;">
Sandipan Choudhuri, Arizona State University, USA
</p>
</li>
<li>
<p>
<b>Publicity Chair</b>
</p>
<p style="padding-left: 1.8em;">
Dr. Arun Das, Google, USA
</p>
</li>
</ul>
<!--tr>
<hr id='pastWorkshops' />
<h3>Past CINS Workshops</h3>
<ul>
<li>
<p>
<b><a href="archives/cins2017/">CINS 2017</a></b>
</p>
</li>
<li>
<p>
<b><a href="archives/cins2018/">CINS 2018</a></b>
</p>
</li>
</ul>
</tr-->
</div>
<!-- <div class='col-xs-3' id='usefulLinks'>
<h4>Useful Links</h4>
<ul>
<a href='https://www.sigmetrics.org/sigmetrics2017/workshops.html'><li>ACM
SIGMETRICS 2017</li></a>
</ul>
</div> -->
</div>
<!--div class="row"-->
<!--div class='col-xs-12' id="footer"-->
<!--a href="http://netsci.asu.edu/cins/">CINS</a> is sponsored by <a
href="http://www.sigmetrics.org/" target="_blank">ACM</a-->
<!-- <div class="panel panel-primary">
<div class="panel-heading">Panel Heading</div>
</div> -->
<!--/div-->
</div>
</div>
<script
src='https://cdnjs.cloudflare.com/ajax/libs/jquery/3.1.0/jquery.min.js'></script>
<script
src='https://cdnjs.cloudflare.com/ajax/libs/twitter-bootstrap/3.3.7/js/bootstrap.min.js'></script>
<script type="text/javascript">
/* activate sidebar */
$('#sidebar').affix({
offset : {
top : 290
}
});
</script>
</body>
</html>