Skip to content
Snippets Groups Projects
Commit c7839cda authored by Teresa Carbajo-Garcia's avatar Teresa Carbajo-Garcia
Browse files

Reverse homepage buttons

parent 8cb96d7c
No related branches found
No related tags found
No related merge requests found
...@@ -6,7 +6,7 @@ layout: default ...@@ -6,7 +6,7 @@ layout: default
{{ content }} {{ content }}
</div> </div>
{% assign research_pages = site.pages | where_exp: 'page', 'page.url contains "/research/"' %} {% assign research_pages = site.pages | where_exp: 'page', 'page.url contains "/research/"' %}
{% for item in research_pages %} {% for item in research_pages | reverse %}
<a class="btn btn-primary btn-lg" href="{{ item.url }}">{{ item.title }}</a> <a class="btn btn-primary btn-lg" href="{{ item.url }}">{{ item.title }}</a>
{% endfor %} {% endfor %}
</div> </div>
...@@ -27,4 +27,3 @@ layout: default ...@@ -27,4 +27,3 @@ layout: default
{% bibliography --max 5 %} {% bibliography --max 5 %}
</div> </div>
</div> </div>
...@@ -5,5 +5,4 @@ menu: true ...@@ -5,5 +5,4 @@ menu: true
menu_order: 1 menu_order: 1
--- ---
This research group focusses on mechanised language specification and program verification. We are exploring what it means to build, evaluate, and trust a fully mechanised language specification, using JavaScript as the real-world example language. We are developing library specifications which must be robust with respect to the environment: implementations should not leak; and specifications should be useful to the client. We are developing compositional program reasoning techniques that scale, leading to automatic tools for verifiying properties of programs. Our current focus is on reasoning about JavaScript and Concurrency. This research group focuses on mechanised language specification and program verification. We are exploring what it means to build, evaluate, and trust a fully mechanised language specification, using JavaScript as the real-world example language. We are developing library specifications which must be robust with respect to the environment: implementations should not leak; and specifications should be useful to the client. We are developing compositional program reasoning techniques that scale, leading to automatic tools for verifying properties of programs. Our current focus is on reasoning about JavaScript and Concurrency.
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment