-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathindex.html
More file actions
1170 lines (1012 loc) · 44.7 KB
/
index.html
File metadata and controls
1170 lines (1012 loc) · 44.7 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
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
<!DOCTYPE html>
<html lang="en">
<head>
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/4.7.0/css/font-awesome.min.css">
<meta charset="utf-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1">
<title>Logic and Formal Methods Group</title>
<meta name="description" content="LFM website">
<meta name="keywords" content="software architecture, process calculi, coordination, algebraic reasoning, program transformation, components">
<meta name="author" content="Renato Neves" >
<meta name="google-site-verification"
content="DRIp9oJtDGoKi2pPuGMqBkksSgKuidiWN_kRCrZMvkg" />
<!-- <base href="http://lmf.di.uminho.pt/" target="_parent" /> -->
<link rel="mask-icon" href="" color="#34569c">
<link href="extra/css/bootstrap-bw.min.css" rel="stylesheet" media="screen">
<link href="extra/css/main2.css" rel="stylesheet">
</head>
<body>
<div class="navbar navbar-default navbar-fixed-top">
<div class="navbar-header">
<button type="button" class="navbar-toggle" data-toggle="collapse" data-target=".navbar-responsive-collapse">
<span class="icon-bar"></span>
<span class="icon-bar"></span>
<span class="icon-bar"></span>
</button>
</div>
<div class="navbar-collapse collapse navbar-responsive-collapse">
<ul class="nav navbar-nav" id="myTab">
<li class="active"><a href="#home" data-toggle="tab" aria-expanded="true">Home</a></li>
<!--~~~~~~~~~~~~~~~~~
CHANGE TABS HERE
~~~~~~~~~~~~~~~~~~-->
<li><a href="#members" data-toggle="tab" aria-expanded="false">Members</a></li>
<li><a href="#projects" data-toggle="tab" aria-expanded="false">Projects</a></li>
<li><a href="#publications" data-toggle="tab" aria-expanded="false">Publications</a></li>
<li><a href="#tools" data-toggle="tab" aria-expanded="false">Tools</a></li>
<li><a href="#teaching" data-toggle="tab" aria-expanded="false">Teaching</a></li>
<!-- <li><a href="#events" data-toggle="tab" aria-expanded="false">Events</a></li> -->
</ul>
</div>
</div>
<div class="splash">
<h2 class="splash-title"></h2>
<div class="blue-rect">
<h4 class="splash-subtitle">Logic and Formal Methods Group</h4>
<h4 class="splash-subtitle"> Research team @ HASLab, Univ. Minho</h4>
</div>
</div>
<div id="myTabContent" class="container">
<div class="row">
<!-- ~~~~~~~~~~~~~~~~~ -->
<!--~~~~~~ HOME ~~~~~~~-->
<!-- ~~~~~~~~~~~~~~~~~ -->
<div class="tab-pane fade active in" id="home">
<div class="bs-component">
<h3>About</h3>
<p>
We are a research group on theoretical computer science and formal methods. Our core
topics are:
<ul>
<li> Program semantics and verification </li>
<li> Model checking </li>
<li> Algebra of Programming
<li> Cyber-physical systems </li>
<li> Quantum computing </li>
<li> Cryptography </li>
</ul>
</p>
<p>
We have a long scientific tradition, significant links to national
industry, and a deep involvement in teaching activities. We also have an
extensive track record on attracting competitive funds from different
agencies.
</p>
<p>
If you are interested in working with us do get in touch!! The summing
picture of all our research is given by the diagram below.
</p>
<p style="text-align:center; padding:10px">
<img src="CSTriangle.png" width="20%" align="middle">
</p>
<p>
We are part of
<a href="http://haslab.uminho.pt">HASLab</a>, a software
laboratory at <a href="http://di.uminho.pt">University of
Minho</a> associated to <a href="http://inesctec.pt/">INESC
TEC</a>. We are also articulated with the research group
<a href="https://inl.int/quantum-and-linear-optical-computation/">
Quantum and Linear-Optical Computation Group</a>, hosted
by <a href="https://inl.int/">INL</a>, the International Iberian
Nanotechnology Laboratory.
</p>
</div>
</div> <!-- home -->
<!-- ~~~~~~~~~~~~~~~~~~~~~~~ -->
<!-- ~~~~~~ Members ~~~~~~ -->
<!-- ~~~~~~~~~~~~~~~~~~~~~~~ -->
<div class="tab-pane fade" id="members">
<div class="bs-component">
<h3>Staff</h3>
<!-- ~~~~~~~~ -->
<ul class="persons">
<li> <div class="person">
<a href="http://www.di.uminho.pt/~jno">
<img class="bioPhoto2" src="extra/img/photos/jno.jpg" alt="José Nuno Oliveira">
</a>
<div class="person2">
<p class="strong"><a href="http://www.di.uminho.pt/~jno">José Nuno Oliveira</a></p>
<p>Full Professor at
<a href="http://www.inesctec.pt/en/">INESC TEC</a>,
<a href="http://www.uminho.pt/">Univ. Minho</a>.</p>
<ul>
<li>Formal methods</li>
<li>Relational and algebraic methods</li>
<li>Software specification and engineering</li>
<li>Functional programming</li>
</ul>
</div>
</div> </li>
<!-- ~~~~~ -->
<li> <div class="person">
<a href="http://www.di.uminho.pt/~lsb">
<img class="bioPhoto2" src="extra/img/photos/lsb.jpg" alt="Luís Soares Barbosa">
</a>
<div class="person2">
<p class="strong"><a href="http://www.di.uminho.pt/~lsb">Luís Soares Barbosa</a></p>
<p>Full Professor at
<a href="http://www.inesctec.pt/en/">INESC TEC</a>,
<a href="http://www.uminho.pt/">Univ. Minho</a>, and
<a href="https://inl.int/">INL</a>.
</p>
<ul>
<li>Software components, services and architectures</li>
<li>Program and design calculi</li>
<li>Coalgebra theory and coinductive reasoning</li>
<li>Modal and hybrid logics</li>
</ul>
</div>
</div> </li>
<!-- ~~~~~ -->
<li> <div class="person">
<a href="http://www.di.uminho.pt/~jbb">
<img class="bioPhoto2" src="extra/img/photos/jbb.jpg" alt="José Bernardo Barros">
</a>
<div class="person2">
<p class="strong"><a href="http://www.di.uminho.pt/~jbb">José Bernardo Barros</a></p>
<p>Associate professor at
<a href="http://www2.inescporto.pt/">INESC TEC</a>,
<a href="http://http://www.uminho.pt/">Univ. Minho</a>.</p>
<ul>
<li>Functional programming</li>
<li>Algorithmics</li>
</ul>
</div>
</div> </li>
<!-- ~~~~~ -->
<!-- ~~~~~ -->
<li> <div class="person">
<a href="http://www.di.uminho.pt/~jsp">
<img class="bioPhoto2" src="extra/img/photos/jsp.jpg" alt="Jorge Sousa Pinto">
</a>
<div class="person2">
<p class="strong"><a href="http://www.di.uminho.pt/~jsp">Jorge Sousa Pinto</a></p>
<p>Associate professor at
<a href="http://www.inesctec.pt/en/">INESC TEC</a>,
<a href="http://www.uminho.pt/">Univ. Minho</a>.</p>
<ul>
<li>Program Verification</li>
</ul>
</div>
</div> </li>
<!-- ~~~~~ -->
<li> <div class="person">
<a href="https://haslab.uminho.pt/jas/">
<img class="bioPhoto2" src="extra/img/photos/js.jpg" alt="João Saraiva">
</a>
<div class="person2">
<p class="strong"><a href="https://haslab.uminho.pt/jas/">João Saraiva</a></p>
<p>Associate professor at
<a href="http://www.inesctec.pt/en/">INESC TEC</a>,
<a href="http://www.uminho.pt/">Univ. Minho</a>.</p>
<ul>
<li>Programming Languages Design</li>
<li>Software Analysis and Evolution</li>
</ul>
</div>
</div> </li>
<!-- ~~~~~ -->
<li> <div class="person">
<a href="https://www.di.uminho.pt/~jfc/index.shtml">
<img class="bioPhoto2" src="extra/img/photos/jc.jpg" alt="José Creissac Campos">
</a>
<div class="person2">
<p class="strong"><a href="https://www.di.uminho.pt/~jfc/index.shtml">José Creissac Campos</a></p>
<p>Associate professor at <a href="http://www.inesctec.pt/en/">INESC TEC</a>, <a href="http://www.uminho.pt/">Univ. Minho</a>
<ul>
<li>Interactive Systems Engineering</li>
<li>Formal Methods</li>
<li>Software Engineering</li>
<li>Human-Computer Interaction</li>
</ul>
</div>
</div> </li>
<li> <div class="person">
<a href="http://www.di.uminho.pt/~mjf">
<img class="bioPhoto2" src="extra/img/photos/mjf.jpg" alt="Maria João Frade">
</a>
<div class="person2">
<p class="strong"><a href="http://www.di.uminho.pt/~mjf">Maria João Frade</a></p>
<p>Auxiliar professor at
<a href="http://www.inesctec.pt/en/">INESC TEC</a>,
<a href="http://www.uminho.pt/">Univ. Minho</a>.</p>
<ul>
<li>Program Verification</li>
<li>Functional Programming</li>
</ul>
</div>
</div> </li>
<li> <div class="person">
<a href="https://alcinocunha.github.io/">
<img class="bioPhoto2" src="extra/img/photos/ac.jpg" alt="Alcino Cunha">
</a>
<div class="person2">
<p class="strong"><a href="https://alcinocunha.github.io/">Alcino Cunha</a></p>
<p>Auxiliar professor at <a href="http://www.inesctec.pt/en/">INESC TEC</a>, <a href="http://www.uminho.pt/">Univ. Minho</a>
<ul>
<li>Software Specification</li>
<li>Model Checking</li>
</ul>
</div>
</div> </li>
<li> <div class="person">
<a href="https://www.di.uminho.pt/~jba/">
<img class="bioPhoto2" src="extra/img/photos/jb.jpg" alt="José Carlos Bacelar">
</a>
<div class="person2">
<p class="strong"><a href="https://www.di.uminho.pt/~jba/">José Carlos Bacelar</a></p>
<p>Auxiliar professor at <a href="http://www.inesctec.pt/en/">INESC TEC</a>, <a href="http://www.uminho.pt/">Univ. Minho</a>
<ul>
<li>Cryptography</li>
</ul>
</div>
</div> </li>
<li> <div class="person">
<a href="http://alfa.di.uminho.pt/~nevrenato/">
<img class="bioPhoto2" src="extra/img/photos/rn.jpg" alt="Renato Neves">
</a>
<div class="person2">
<p class="strong"><a href="http://alfa.di.uminho.pt/~nevrenato/">Renato Neves</a></p>
<p>Auxiliar professor at <a href="http://www.inesctec.pt/en/">INESC TEC</a>, <a href="http://www.uminho.pt/">Univ. Minho</a>
<ul>
<li>Programming languages</li>
<li>Cyber-Physical Systems</li>
<li>Quantum Computing</li>
</ul>
</div>
</div> </li>
</ul>
<h3>Postdocs and PhD Students</h3>
<ul class="persons">
<!-- ~~~~~ -->
<li> <div class="person">
<a href="https://anac.nery.name/">
<img class="bioPhoto2" src="extra/img/photos/an.JPG" alt="Ana Neri">
</a>
<div class="person2"> <!-- psmaller2 -->
<p class="strong"><a href="https://ana.nery.name/wp/">Ana Neri</a></p>
<p>Research Assistant at
<a href="http://www.inesctec.pt/en/">INESC TEC</a> and
<a href="http://www.uminho.pt/">Univ. Minho</a>.</p>
<ul>
<li>Quantum Computing
</ul>
</div>
</div> </li>
<li> <div class="person">
<img class="bioPhoto2" src="extra/img/photos/mo.jpg"
alt="Michael de Oliveira">
<div class="person2">
<p class="strong"><a href="#">Michael de Oliveira</a></p>
<p>PhD student at
<a href="http://www.ua.pt">Univ. Minho</a>.
<ul>
<li>Quantum Computing</li>
</ul>
</div>
</div> </li>
<li> <div class="person">
<img class="bioPhoto2" src="extra/img/photos/vf.jpg"
alt="Vítor Fernandes">
<div class="person2">
<p class="strong"><a href="#">Vítor Fernandes</a></p>
<p>PhD student at <a href="http://www.inesctec.pt/en/">INESC TEC</a> and <a href="http://www.uminho.pt/">Univ. Minho</a>.
<ul>
<li>Quantum Computing</li>
</ul>
</div>
</div>
</li>
<li> <div class="person">
<img class="bioPhoto2" src="extra/img/photos/ju_souza.jpg"
alt="Juliana Souza">
<div class="person2">
<p class="strong"><a href="#">Juliana Souza</a></p>
<p>PhD student at <a href="http://www.inesctec.pt/en/">INESC TEC</a> and <a href="http://www.uminho.pt/">Univ. Minho</a>.
<ul>
<li>Cyber-Physical Programming</li>
</ul>
</div>
</div>
</li>
<li> <div class="person">
<img class="bioPhoto2" src="extra/img/photos/jaime.jpg"
alt="Jaime Santos">
<div class="person2">
<p class="strong"><a href="#">Jaime Santos</a></p>
<p>PhD student at <a href="http://www.inesctec.pt/en/">INESC TEC</a> and <a href="http://www.uminho.pt/">Univ. Minho</a>.
<ul>
<li>Quantum Computing</li>
</ul>
</div>
</div>
</li>
<li> <div class="person">
<img class="bioPhoto2" src="extra/img/photos/andre.jpg"
alt="André Sequeira">
<div class="person2">
<p class="strong"><a href="#">André Sequeira</a></p>
<p>PhD student at <a href="http://www.inesctec.pt/en/">INESC TEC</a> and <a href="http://www.uminho.pt/">Univ. Minho</a>.
<ul>
<li>Quantum Computing</li>
<li>Machine Learning</li>
<li>Reinforcement Learning</li>
<li>Artificial Intelligence</li>
</ul>
</div>
</div>
</li>
<li> <div class="person">
<img class="bioPhoto2" src="extra/img/photos/manisha.jpg"
alt="Manisha Jain">
<div class="person2">
<p class="strong"><a href="#">Manisha Jain</a></p>
<p>PhD student at <a href="http://www.ua.pt/en/">University of Aveiro</a>.
<ul>
<li>Quantum Computing</li>
<li>Logic, particularly modal and fuzzy logic</li>
<li>Model verification</li>
<li>Category theory and Coalgebra</li>
</ul>
</div>
</div>
</li>
<li> <div class="person">
<img class="bioPhoto2" src="extra/img/photos/zeinab.jpg"
alt="Zeinab Rahmani">
<div class="person2">
<p class="strong"><a href="#">Zeinab Rahmani</a></p>
<p>PhD student at <a href="http://www.ua.pt/en/">University of Aveiro</a>.
<ul>
<li>Quantum Computing</li>
</ul>
</div>
</div>
</li>
<li> <div class="person">
<img class="bioPhoto2" src="extra/img/photos/ezequiel.jpg"
alt="Ezequiel Moreira">
<div class="person2">
<p class="strong"><a href="#">Ezequiel Moreira</a></p>
<p>PhD student at <a href="http://www.inesctec.pt/en/">INESC TEC</a> and <a href="http://www.uminho.pt/">Univ. Minho</a>.
<ul>
<li>Formal Methods</li>
<li>Natural Language Processing</li>
<li>Software Engineering</li>
</ul>
</div>
</div>
</li>
</ul>
<h3>Research Associates</h3>
<ul class="persons">
<li> <div class="person">
<a href="http://haslab.uminho.pt/lgomes/">
<img class="bioPhoto2" src="extra/img/photos/lg.jpg" alt="Leandro Gomes">
</a>
<div class="person2">
<p class="strong"><a href="http://haslab.uminho.pt/lgomes/">Leandro Gomes</a></p>
<p>PhD researcher at
<a href="http://www.inesctec.pt/en/">INESC TEC</a>,
<a href="http://www.uminho.pt/">Univ. Minho</a>.</p>
<ul>
<li>Dynamic logics</li>
<li>Contract-based design</li>
<li>Algebraic structures</li>
</ul>
</div>
</div> </li>
<li> <div class="person">
<a href="http://jose.proenca.org">
<img class="bioPhoto2" src="extra/img/photos/jp.jpg" alt="José Proença">
</a>
<div class="person2">
<p class="strong"><a href="http://jose.proenca.org">José Proença</a></p>
<p>Post-Doc at
<a href="https://cister.isep.ipp.pt/">CISTER</a>
<!-- <a href="http://www.inesctec.pt/en/">INESC TEC</a> and -->
<!-- <a href="http://www.uminho.pt/">Univ. Minho</a>.</p> -->
<ul>
<li>Software engineering</li>
<li>Coordination models</li>
<li>Wireless sensor networks</li>
<li>Product line engineering</li>
<!-- <li>Formal methods</li> -->
<li>Functional programming</li>
<li>Programming in Scala</li>
</ul>
</div>
</div> </li>
<li>
<div class="person">
<a href="http://alfa.di.uminho.pt/~madeira/">
<img class="bioPhoto2" src="extra/img/photos/am.jpg" alt="Alexandre Madeira">
</a>
<div class="person2">
<p class="strong"><a href="http://alfa.di.uminho.pt/~madeira/">Alexandre Madeira</a></p>
<p>Assistant professor at
<!-- <a href="http://www.inesctec.pt/en/">INESC TEC</a>, -->
<!-- <a href="http://www.uminho.pt/">Univ. Minho</a>, and -->
<a href="http://cidma.mat.ua.pt/ma/home.php">CIDMA</a>.</p>
<ul>
<li>Formal specification of software</li>
<li>Combination and systematic generation of logics</li>
<li>Modal/hybrid/dynamic logics</li>
<li>Algebraic specification </li>
</ul>
</div>
</div>
</li>
<!-- ~~~~~ -->
<li> <div class="person">
<a href="http://sweet.ua.pt/dirk/">
<img class="bioPhoto2" src="extra/img/photos/dh.png" alt="Dirk Hofmann">
</a>
<div class="person2">
<p class="strong"><a href="http://sweet.ua.pt/dirk/">Dirk Hofmann</a></p>
<p>Associate Professor at
<a href="http://www.ua.pt">Univ. Aveiro</a>.
<ul>
<li>Category Theory</li>
</ul>
</div>
</div> </li>
<!-- ~~~~~ -->
<li> <div class="person">
<a href="http://sweet.ua.pt/martins/">
<img class="bioPhoto2" src="extra/img/photos/mm.jpg" alt="Manuel Martins">
</a>
<div class="person2">
<p class="strong"><a href="http://sweet.ua.pt/martins/">Manuel Martins</a></p>
<p>Associate professor at
<a href="http://www.ua.pt">Univ. Aveiro</a>.
</p>
<ul>
<li>Algebraic logic</li>
<li>Modal logic</li>
<li>Algebraic specification of abstract data types</li>
<li>Supported teaching and Elearning</li>
</ul>
</div>
</div> </li>
</ul>
<h3>Former members</h3>
<ul>
<li>Guillermina Cledou (2022) </li>
<li>Carlos Tavares (2022) </li>
<li>Sofia Oliveira (2020) </li>
<li>Paulo Ribeiro (2020)</li>
<li>Afonso Rodrigues (2020)</li>
<li>Rúben Cruz (2018)</li>
<li>Rita Vale (2017)</li>
<li>Tiago Loureiro (2017)</li>
<li>Alejandro Sanchez (2016)</li>
</ul>
</div> <!-- col-sm-4 -->
</div> <!-- home -->
<!-- ~~~~~~~~~~~~~~~~~~~~~~~~ -->
<!-- ~~~~ Publications ~~~~ -->
<!-- ~~~~~~~~~~~~~~~~~~~~~~~~ -->
<div class="tab-pane fade" id="publications">
<div class="bs-component">
<h3>Key publications</h3>
<p><a name="neves22"></a>
Fredrik Dahlqvist and Renato Neves.
An internal language for categories enriched over generalised metric
spaces.
In Florin Manea and Alex Simpson, editors, <em>30th EACSL Annual
Conference on Computer Science Logic, CSL 2022, February 14-19, 2022,
Göttingen, Germany (Virtual Conference)</em>, volume 216 of <em>LIPIcs</em>,
pages 16:1--16:18. Schloss Dagstuhl - Leibniz-Zentrum für Informatik,
2022.
[ <a href="Kbib_bib.html#neves22">bib</a> |
<a href="http://dx.doi.org/10.4230/LIPIcs.CSL.2022.16">DOI</a> |
<a href="https://doi.org/10.4230/LIPIcs.CSL.2022.16">http</a> ]
</p>
<p><a name="Campos:2020"></a>
J.C. Campos, C. Fayollas, M.D. Harrison, C. Martinie, P. Masci, and
P. Palanque.
Supporting the analysis of safety critical user interfaces: an
exploration of three formal tools.
<em>ACM Transactions on Computer-Human Interaction</em>, 27(5), August
2020.
[ <a href="Kbib_bib.html#Campos:2020">bib</a> |
<a href="http://dx.doi.org/10.1145/3404199">DOI</a> |
<a href="http://www.di.uminho.pt/~jfc/publications/Campos20-TOCHI-author.pdf">.pdf</a> ]
</p>
<p><a name="goncharov-implementing-ictac-20"></a>
Sergey Goncharov, Renato Neves, and José Proença.
Implementing hybrid semantics: From functional to imperative.
In Ka I Pun, Adenilso da Silva Simão, and Volker Stolz, editors,
<em>Theoretical Aspects of Computing - ICTAC 2020 - 17th International
Colloquium, Macau S.A.R., China, October 31 - November 30, 2020,
Proceedings</em>, volume 12545 of <em>Lecture Notes in Computer Science</em>.
Springer, 2020.
[ <a href="Kbib_bib.html#goncharov-implementing-ictac-20">bib</a> |
<a href="http://davinci.di.uminho.pt/publications/goncharov-implementing-ictac-20.pdf">.pdf</a> ]
</p>
<p><a name="HarrisonMC:2019"></a>
M.D. Harrison, P. Masci, and J.C. Campos.
Verification templates for the analysis of user interface software
design.
<em>IEEE Transactions on Software Engineering</em>, 45(8):802--822,
August 2019.
[ <a href="Kbib_bib.html#HarrisonMC:2019">bib</a> |
<a href="http://dx.doi.org/10.1109/TSE.2018.2804939">DOI</a> |
<a href="http://www.di.uminho.pt/~jfc/publications/HarrisonMC18-IEEETSE-postprint.pdf">.pdf</a> ]
</p>
<p><a name="DBLP:conf/concur/0001JN18"></a>
Sergey Goncharov, Julian Jakob, and Renato Neves.
A semantics for hybrid iteration.
In Sven Schewe and Lijun Zhang, editors, <em>29th International
Conference on Concurrency Theory, CONCUR 2018, September 4-7, 2018,
Beijing, China</em>, volume 118 of <em>LIPIcs</em>, pages 22:1--22:17. Schloss
Dagstuhl - Leibniz-Zentrum für Informatik, 2018.
[ <a href="Kbib_bib.html#DBLP:conf/concur/0001JN18">bib</a> |
<a href="http://dx.doi.org/10.4230/LIPIcs.CONCUR.2018.22">DOI</a> |
<a href="https://doi.org/10.4230/LIPIcs.CONCUR.2018.22">http</a> ]
</p>
<p><a name="CamposSAH:2016"></a>
J.C. Campos, M. Sousa, M. Alves, and M.D. Harrison.
Formal verification of a space system's user interface with the ivy
workbench.
<em>IEEE Transactions on Human-Machine Systems</em>, 46(2):303--316,
2016.
[ <a href="Kbib_bib.html#CamposSAH:2016">bib</a> |
<a href="http://dx.doi.org/10.1109/THMS.2015.2421511">DOI</a> |
<a href="http://www.di.uminho.pt/~jfc/publications/thms-paper-author_version.pdf">.pdf</a> ]
</p><hr><p><em>This file was generated by
<a href="http://www.lri.fr/~filliatr/bibtex2html/">bibtex2html</a> 1.99.</em></p>
<h3>Recent publications</h3>
<p><a name="HarrisonMC:2021"></a>
M.D. Harrison, P. Masci, and J.C. Campos.
Balancing the formal and the informal in user centred design.
<em>Interacting with Computers</em>, 33(1):55--72, January 2021.
[ <a href="Rbib_bib.html#HarrisonMC:2021">bib</a> |
<a href="http://dx.doi.org/10.1093/iwcomp/iwab012">DOI</a> ]
</p>
<p><a name="SilvaVCCR:2020"></a>
C. Silva, J. Vieira, J.C. Campos, R. Couto, and A.N. Ribeiro.
Development and validation of a descriptive cognitive model for a low
code development platform.
<em>Human Factors</em>, 63(6):1012--1032, 2021.
[ <a href="Rbib_bib.html#SilvaVCCR:2020">bib</a> |
<a href="http://dx.doi.org/10.1177/0018720820920429">DOI</a> ]
</p>
<p><a name="CannyNCP:2019"></a>
A. Canny, D. Navarre, J.C. Campos, and P. Palanque.
Model-based testing of post-wimp interactions using petri-nets.
In E. Sekerinski et al., editor, <em>Formal Methods. FM 2019
International Workshops</em>, volume 12232 of <em>Lecture Notes in Computer
Science</em>, pages 486--502. Springer, 2020.
[ <a href="Rbib_bib.html#CannyNCP:2019">bib</a> |
<a href="http://dx.doi.org/10.1007/978-3-030-54994-7_35">DOI</a> ]
</p>
<p><a name="DBLP:journals/mscs/HofmannNN19"></a>
Dirk Hofmann, Renato Neves, and Pedro Nora.
Limits in categories of vietoris coalgebras.
<em>Math. Struct. Comput. Sci.</em>, 29(4):552--587, 2019.
[ <a href="Rbib_bib.html#DBLP:journals/mscs/HofmannNN19">bib</a> |
<a href="http://dx.doi.org/10.1017/S0960129518000269">DOI</a> |
<a href="https://doi.org/10.1017/S0960129518000269">http</a> ]
</p>
<p><a name="DBLP:conf/ppdp/0001N19"></a>
Sergey Goncharov and Renato Neves.
An adequate while-language for hybrid computation.
In Ekaterina Komendantskaya, editor, <em>Proceedings of the 21st
International Symposium on Principles and Practice of Programming Languages,
PPDP 2019, Porto, Portugal, October 7-9, 2019</em>, pages 11:1--11:15. ACM,
2019.
[ <a href="Rbib_bib.html#DBLP:conf/ppdp/0001N19">bib</a> |
<a href="http://dx.doi.org/10.1145/3354166.3354176">DOI</a> |
<a href="https://doi.org/10.1145/3354166.3354176">http</a> ]
</p>
<p><a name="DBLP:journals/tcs/NevesB18"></a>
Renato Neves and Luís Soares Barbosa.
Languages and models for hybrid automata: A coalgebraic
perspective.
<em>Theor. Comput. Sci.</em>, 744:113--142, 2018.
[ <a href="Rbib_bib.html#DBLP:journals/tcs/NevesB18">bib</a> |
<a href="http://dx.doi.org/10.1016/j.tcs.2017.09.038">DOI</a> |
<a href="https://doi.org/10.1016/j.tcs.2017.09.038">http</a> ]
</p><hr><p><em>This file was generated by
<a href="http://www.lri.fr/~filliatr/bibtex2html/">bibtex2html</a> 1.99.</em></p>
</div>
</div>
<!-- <\!-- USING BIBTEX -\-> -->
<!-- <bibtex src="content/Rbib.bib"></bibtex> -->
<!-- <\!-- where bib will be displayed. -\-> -->
<!-- <div id="bibtex_display"></div> -->
<!-- </div> -->
<!-- ~~~~~~~~~~~~~~~~~~~~~~~ -->
<!-- ~~~~~~~ Tools ~~~~~~~ -->
<!-- ~~~~~~~~~~~~~~~~~~~~~~~ -->
<div class="tab-pane fade" id="tools">
<div class="bs-component">
<h3>Tools</h3>
<p><a href="https://github.com/arcalab/hybrid-programming">Lince</a> - Modelling and and simulation of hybrid programs.</p><p>
<a href="https://github.com/haslab/ifta">IFTA: Interface Featured
Timed Automata</a> - Implementation of the Interface Featured
Timed Automata (IFTA).
</p>
<p>
<a href="https://github.com/JaimePSantos/QWAK">QWAK: Quantum Walk
Analysis Kit</a> - Python package and GUI for simulating continuous-time quantum walks.</p>
<p>
<a href="http://ivy.di.uminho.pt">IVY workbench</a> - A model based tool for the analysis of interactive systems designs.
</p>
</div>
</div>
<!-- ~~~~~~~~~~~~~~~~~~~~~~~~ -->
<!-- ~~~~~~ Projects ~~~~~~ -->
<!-- ~~~~~~~~~~~~~~~~~~~~~~~~ -->
<div class="tab-pane fade" id="projects">
<div class="bs-component">
<h3>Recent projects</h3>
<ul class="persons">
<li>
<div class="person">
<a href="http://lmf.di.uminho.pt/Ibex/">
<img class="bioPhoto2" src="extra/img/photos/Spanish_Ibex_Portrait.jpg" alt="Ibex">
<!-- <h1 class="bioPhoto2" style="text-align: center; font-size: 19pt; background-color: rgb(255, 248, 180); line-height: 40pt;">DaVinci</h1> -->
</a>
<div class="person2 psmaller">
<p class="strong"><a href="http://lmf.di.uminho.pt/Ibex/">Ibex</a></p>
<p> Quantitative methods for cyber-physical programming; Started in 2022.
<!-- </br><span class="text-muted">POCI-01-0145-FEDER-029946 (18-21)</span> -->
</p>
</div>
</div>
</li>
<li>
<div class="person">
<a href="http://lmf.di.uminho.pt/davinci/">
<img class="bioPhoto2" src="extra/img/photos/davinci.jpg" alt="DaVinci">
<!-- <h1 class="bioPhoto2" style="text-align: center; font-size: 19pt; background-color: rgb(255, 248, 180); line-height: 40pt;">DaVinci</h1> -->
</a>
<div class="person2 psmaller">
<p class="strong"><a href="http://davinci.di.uminho.pt">DaVinci</a></p>
<p> Distributed Architectures: Variability and Interaction for Cyber-Physical Systems; 2018-2022.
<!-- </br><span class="text-muted">POCI-01-0145-FEDER-029946 (18-21)</span> -->
</p>
</div>
</div>
</li>
<!-- ~~~~~ -->
<li>
<div class="person">
<a href="http://klee.di.uminho.pt">
<img class="bioPhoto2" src="extra/img/photos/klee.png" alt="KLEE">
<!-- <h1 class="bioPhoto2" style="text-align: center;">KLEE</h1> -->
</a>
<div class="person2 psmaller">
<p class="strong"><a href="http://klee.di.uminho.pt">KLEE</a></p>
<p> Coalgebraic Modeling and Analysis for Computational Synthetic Biology; 2018-2021</p>
</div>
</div>
</li>
<!-- ~~~~~ -->
<li>
<div class="person">
<a href="http://lmf.di.uminho.pt/Bansky/">
<img class="bioPhoto2" src="extra/img/photos/banksy.png" alt="Banksy">
<!-- <h1 class="bioPhoto2" style="text-align: center;">Banksy</h1> -->
</a>
<div class="person2 psmaller">
<p class="strong"><a href="http://lmf.di.uminho.pt/Bansky/">Banksy</a></p>
<p> Paraconsistent inference for research in age-related macular degeneration; 2025-2028</p>
</div>
</div>
</li>
<!-- ~~~~~ -->
<!-- <li>
<div class="person">
<a href="http://pt-flad-chair.di.uminho.pt">
<img class="bioPhoto2" src="extra/img/photos/pt-flad_chair.jpeg" alt="PT-FLAD chair">
</a>
<div class="person2 psmaller">
<p class="strong"><a href="http://pt-flad-chair.di.uminho.pt">PT-FLAD Chair on smart Cities & Smart Governance</a></p>
<p> Chair jointly supported by PT and FLAD, since June 2016.</p>
</div>
</div>
</li> -->
<!-- ~~~~~ -->
<li>
<div class="person">
<a href="http://dali.di.uminho.pt"><img class="bioPhoto2" src="extra/img/photos/dali.jpg" alt="DaLí"></a>
<div class="person2 psmaller">
<p class="strong"><a href="http://dali.di.uminho.pt">DaLí</a></p>
<p> Dynamic logics for cyber-physical systems; 2016–2018.</p>
</div>
</div>
</li>
<!-- ~~~~~ -->
<li>
<div class="person">
<a href="http://trust.di.uminho.pt"><img class="bioPhoto2" src="extra/img/photos/trust.png" alt="TRUST"></a>
<div class="person2 psmaller">
<p class="strong"><a href="http://trust.di.uminho.pt">TRUST</a></p>
<p>Trustworthy Software Design with Alloy; 2016–2018.</p>
</div>
</div>
</li>
</ul>
<h3>Collaboration</h3>
We were also involved in the following projects.
<ul class="persons">
<!-- ~~~~~ -->
<li>
<div class="person">
<a href="https://www.lightkone.eu"><img class="bioPhoto2" src="extra/img/photos/lightkone.png" alt="LightKone"></a>
<div class="person2 psmaller">
<p class="strong"><a href="https://www.lightkone.eu">LightKone</a></p>
<p>Lightweight computation for networks at the edge; 2017–2020.</p>
</div>
</div>
</li>
<!-- ~~~~~ -->
<!-- ~~~~~ -->
<li> <p class="strong"><a href="http://www.nipe.eeg.uminho.pt/ModuleLeft.aspx?mdl=~/Modules/Generic/GenericView.ascx&ItemID=798&Mid=718&lang=en-US&pageid=218&tabid=14">SmartEGOV</a></p>
<p>(P2020 NORTE-45-2015-23) Harnessing EGOV for smart governance: Foundations and tools, since May, 2016.</p>
</li>
</ul>
<h3>Past Projects</h3>
<h5> Projects </h5>
<ul>
<li><a href="http://wiki.di.uminho.pt/twiki/bin/view/Research/NASONI/WebHome">NASONI</a>: Heterogeneous software coordination: Foundations, methods, tools; 2013-2015.</li>
<li><a href="http://wiki.di.uminho.pt/twiki/bin/view/DI/FMHAS/BestCaseRL8">BestCase RL8</a>: Languages And Tools for Critical Real-time Systems; 2013-2015.</li>
<li><a href="http://pt-flad-chair.di.uminho.pt/">PT-FLAD Chair on smart Cities & Smart Governance</a>: Chair jointly supported by PT and FLAD; 2016-2019.</li>
</ul>
<!-- <h5> Dissertations </h5> -->
<!-- <ul> -->
<!-- <li> [Master] -->
<!-- <strong>Animation of monad H</strong>, by -->
<!-- <a href="">Tiago Loureiro</a>. -->
<!-- <p>Supervisors: <a href="http://www.di.uminho.pt/~lsb">Luís Barbosa</a> and <a href="http://alfa.di.uminho.pt/~nevrenato/">Renato Neves</a>.</p> -->
<!-- <p class="topic-descr">This project proposes an Haskell implementation for hybrid systems, capable of visually depicting the evolution of continuous functions.</p> -->
<!-- </li> -->
<!-- <li> [PhD] -->
<!-- <strong>Logics and calculi for cyber–physical components</strong>, by -->
<!-- <a href="http://alfa.di.uminho.pt/~nevrenato/">Renato Neves</a>. -->
<!-- <p>Supervisor: <a href="http://www.di.uminho.pt/~lsb">Luís Barbosa</a>.</p> -->
<!-- <p class="topic-descr">This project focuses mainly on the foundations of cyber physical systems; coalgebras, proof theory and institutional theory. It also covers a myriad of logics, in particular modal logics.</p> -->
<!-- </li> -->
<!-- <li> [PhD] -->
<!-- <strong>A Virtual Factory for Smart City Service Integration</strong>, by -->
<!-- <a href="http://haslab.uminho.pt/mgc/">Guillermina Cledou</a>. -->
<!-- <p>Supervisors: <a href="http://www.di.uminho.pt/~lsb">Luís Barbosa</a> -->
<!-- and <a href="http://unu.edu/experts/elsa-estevez.html">Elsa Estevez</a>.</p> -->
<!-- <p class="topic-descr">The aim of the thesis is to advance the state of the art in software modelling and development tools for the rapid development of integrated city-level electronic public services.</p> -->
<!-- </li> -->
<!-- </ul> -->
</div>
</div>
<!-- ~~~~~~~~~~~~~~~~~~~~~ -->
<!-- ~~~~~~ Teaching ~~~~~ -->
<!-- ~~~~~~~~~~~~~~~~~~~~~ -->
<div class="tab-pane fade" id="teaching">
<div class="bs-component">
<h3>Courses</h3>
<h4>Ph.D. level</h4>
Cyber-Physical Computation (<a target="#" href="http://alfa.di.uminho.pt/~nevrenato/CPC.html">2019/20</a>)<br>
Quantum Computing (<a target="#" href="http://alfa.di.uminho.pt/~nevrenato/mapi-qc-2021/QC2021.html">2020/21</a>, <a target="#" href="http://lmf.di.uminho.pt/mapi-quantum-computation-1920/">2019/20</a>)<br>
Algebraic and Coalgebraic Models in Software Development (<a href="http://wiki.di.uminho.pt/twiki/bin/view/Education/ACMSD/WebHome" target="#">2016/17</a>)
<h4>M.Sc. level</h4>
Cyber-Physical Computation
(<a href="https://lmf.di.uminho.pt/CyPhyComp">2021/22</a>) <br>
Formal methods in programming
(<a href="https://haslab.github.io/MFP/">2021/22</a>) <br>
Software architecture and Calculi
(<a href="http://lmf.di.uminho.pt/ac-2021/">2020/21</a>, <a href="http://lmf.di.uminho.pt/ac-1920/">2019/20</a>, <a href="http://lmf.di.uminho.pt/ac-1819/">2018/19</a>, <a href="http://lmf.di.uminho.pt/ac-1718/">2017/18</a>, <a href="http://wiki.di.uminho.pt/twiki/bin/view/Education/MFES1617/AC">2016/17</a>, <a href="http://ac1516.proenca.org"
target="#">2015/16</a>)<br>
Quantum Logic (<a href="http://lmf.di.uminho.pt/quantum-logic-2021" target="#">2020/21</a>, <a href="http://lmf.di.uminho.pt/quantum-logic-1920" target="#">2019/20</a>, <a href="http://lmf.di.uminho.pt/quantum-logic-1819" target="#">2018/19</a>, <a href="http://lmf.di.uminho.pt/quantum-logic-1718" target="#">2017/18</a>)<br>
Quantum Computing (<a href="http://lmf.di.uminho.pt/quantum-computation-2223">2022/23</a>, <a href="http://lmf.di.uminho.pt/quantum-computation-2122">2021/22</a>, <a href="http://lmf.di.uminho.pt/quantum-computation-2021">2020/21</a>, <a href="http://lmf.di.uminho.pt/quantum-computation-1920">2019/20</a>, <a href="http://lmf.di.uminho.pt/quantum-computation-1819">2018/19</a>, <a href="http://lmf.di.uminho.pt/quantum-computation-1718">2017/18</a>, <a href="#">2016/17</a>)<br>
Information Systems by Calculation
(<a href="https://haslab.github.io/MFP/CSI/2122/index">2021/22</a>)<br>
Trustworthy Interactive Systems (<a href="https://www4.di.uminho.pt/~jno/sitedi/uc_ME78ME7800006557.html">overview</a>)<br>
<h4>B.Sc. level</h4>
Interaction and Concurrency (<a href="http://lmf.di.uminho.pt/ic-2021/">2020/21</a>, <a href="http://lmf.di.uminho.pt/ic-1920/">2019/20</a>, <a href="http://lmf.di.uminho.pt/ic-1819/">2018/19</a>, <a href="http://lmf.di.uminho.pt/ic-1718/">2017/18</a>, <a href="http://alfa.di.uminho.pt/~madeira/IntConc.html" target="#">2016/17</a>)<br>
Program Calculus (<a href="https://haslab.github.io/CP/">2021/22</a>)<br>
Software Systems Development (<a href="https://www4.di.uminho.pt/~jno/sitedi/uc_J305N2.html">overview</a>) <br>
Human-Computer Interaction (<a href="https://www4.di.uminho.pt/~jno/sitedi/uc_J306N1.html">overview</a>) <br>
<h3>Research Opportunities</h3>
<p>
Here is a selection of possible projects for M.Sc. students that would like
to work with us. We are also open for discussion about other topics. Note that
<strong>we have a few grants</strong> that can pay for most of the ideas
presented in these projects. If you are interested, just come and talk to us.
</p>
<p>
<a href="content/pdfs/projectRN22.pdf">Equivalence for Quantum
Processes: from theory to practice</a>
<p>
<a href="content/pdfs/projectRN22b.pdf">Verification of Hybrid Programs</a>
</div>
</div>
<!-- ~~~~~~~~~~~~~~~~~~~~~~~~~~ -->
<!-- ~~~~~~ ARCA Meetings ~~~~~ -->
<!-- ~~~~~~~~~~~~~~~~~~~~~~~~~~ -->
<!-- <div class="tab-pane fade" id="events"> -->
<!-- <div class="bs-component"> -->
<!-- <h3>LFM Meetings</h3> -->
<!-- <p> -->
<!-- We meet every two weeks to discuss ongoing work within the team. -->
<!-- </p> -->
<!-- <h4> Upcoming meetings </h3> -->
<!-- <ul id="list-nextTalks"> </ul> -->
<!-- <\!-- generated by javascript below -\-> -->
<!-- <h4> Previous meetings </h3> -->
<!-- <\!-- <ul id="list-prevTalks"> </ul> -\-> -->
<!-- <\!-- generated by javascript below -\-> -->
<!-- </div> -->
<!-- </div> -->
<!-- ~~~~~~~~~~~~~~~~~~~~~~~~~ -->
<!-- ~~~ end of CONTENT ~~~~~~ -->
<!-- ~~~~~~~~~~~~~~~~~~~~~~~~~ -->
</div>
</div>
<!-- ~~~~~~~~~~~~~~~~~ -->
<!-- ~~~~ FOOTERS ~~~~ -->
<!-- ~~~~~~~~~~~~~~~~~ -->
<div class="panel-footer" id="wrapper-footer">
<div id="footer">
Copyright 2022 – The LFM Research Group <i class="fa fa-flask"></i>
</div>
</div>