-
Notifications
You must be signed in to change notification settings - Fork 104
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
lib: A tutorial and some 'modify' monad rules for Lib.EquivValid
Thanks to Toby Murray (@tobycmurray) for early feedback. Signed-off-by: Robert Sison <robert.sison@unimelb.edu.au>
- Loading branch information
Showing
9 changed files
with
840 additions
and
2 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -8,4 +8,5 @@ camkes | |
sys-init | ||
lib | ||
lib/Word_Lib | ||
lib/sep_algebra | ||
lib/sep_algebra | ||
lib/EVTutorial |
Large diffs are not rendered by default.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,15 @@ | ||
(* | ||
* Copyright 2020, The University of Melbourne (ABN 84 002 705 224) | ||
* | ||
* SPDX-License-Identifier: BSD-2-Clause | ||
*) | ||
|
||
chapter Lib | ||
|
||
session EVTutorial = Lib + | ||
options [document = pdf] | ||
theories | ||
EquivValidTutorial | ||
document_files | ||
"root.bib" | ||
"root.tex" |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,30 @@ | ||
# Copyright 2020, The University of Melbourne (ABN 84 002 705 224) | ||
# | ||
# SPDX-License-Identifier: CC-BY-SA-4.0 | ||
# | ||
@inproceedings{Murray_MBGK_12, | ||
author = {Murray, Toby and Matichuk, Daniel and Brassil, Matthew and Gammie, Peter and Klein, Gerwin}, | ||
editor = {{Chris Hawblitzel and Dale Miller}}, | ||
month = dec, | ||
year = {2012}, | ||
keywords = {information flow, refinement, scheduling, state monads}, | ||
address = {Kyoto, Japan}, | ||
title = {Noninterference for Operating System Kernels}, | ||
pages = {126--142}, | ||
booktitle = {International Conference on Certified Programs and Proofs}, | ||
paperurl = {https://ts.data61.csiro.au/publications/nicta_full_text/6004.pdf}, | ||
publisher = {Springer}, | ||
isbn = {978-3-642-35307-9} | ||
} | ||
|
||
@INPROCEEDINGS{Goguen_Meseguer_84, | ||
author={J. A. {Goguen} and J. {Meseguer}}, | ||
booktitle={1984 IEEE Symposium on Security and Privacy}, | ||
title={Unwinding and Inference Control}, | ||
year={1984}, | ||
volume={}, | ||
number={}, | ||
pages={75--87}, | ||
publisher = {{IEEE} Computer Society}, | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,49 @@ | ||
% | ||
% Copyright 2020, The University of Melbourne (ABN 84 002 705 224) | ||
% | ||
% SPDX-License-Identifier: CC-BY-SA-4.0 | ||
% | ||
|
||
\documentclass[11pt,a4paper]{article} | ||
\usepackage{isabelle,isabellesym} | ||
|
||
% Ensure words with ligatures like 'fi' are searchable in pdf | ||
% https://tex.stackexchange.com/a/57867 | ||
\input{glyphtounicode} | ||
\pdfgentounicode=1 | ||
|
||
% this should be the last package used | ||
\usepackage{pdfsetup} | ||
|
||
% urls in roman style, theory text in math-similar italics | ||
\urlstyle{rm} | ||
\isabellestyle{it} | ||
|
||
|
||
\begin{document} | ||
|
||
\title{EquivValid Tutorial\thanks{\copyright~The University of Melbourne (ABN 84 002 705 224); licensed under Creative Commons Attribution-ShareAlike 4.0 International (CC BY-SA 4.0)}} | ||
% Remove footnote mark for copyright notice. | ||
% https://tex.stackexchange.com/a/14866 | ||
\renewcommand\footnotemark{} | ||
\author{Robert Sison} | ||
\maketitle | ||
|
||
\tableofcontents | ||
|
||
% sane default for proof documents | ||
\parindent 0pt\parskip 0.5ex | ||
|
||
% generated text of all theories | ||
\input{session} | ||
|
||
% optional bibliography | ||
\bibliographystyle{alpha} | ||
\bibliography{root} | ||
|
||
\end{document} | ||
|
||
%%% Local Variables: | ||
%%% mode: latex | ||
%%% TeX-master: t | ||
%%% End: |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters