Skip to content

Commit a49e419

Browse files
authored
Merge pull request #9 from SivaKesava1/mathjax
Added mathjax
2 parents 9822bfd + 9feed02 commit a49e419

File tree

5 files changed

+23
-6
lines changed

5 files changed

+23
-6
lines changed

_layouts/default.html

Lines changed: 15 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -91,6 +91,21 @@
9191

9292
{% include tracking-footer.html %}
9393

94+
<script>
95+
MathJax = {
96+
tex : {
97+
tags : 'ams',
98+
inlineMath : [ ['$','$'] ],
99+
processEscapes : false,
100+
processEnvironments : false,
101+
processRefs : false,
102+
}
103+
}
104+
</script>
105+
<script src='https://cdn.jsdelivr.net/npm/mathjax@3.0.1/es5/tex-chtml.js'
106+
integrity='sha256-h37zcxt3siZItdbF3C1YCiJz+FuG45k8SERUkNDAvko=' crossorigin>
107+
</script>
108+
94109
</body>
95110

96111
</html>

_pages/authors-list.html

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,9 @@ <h4 class="text-dark mb-0"> {{ author[1].name }} </h4>
2020
</a>
2121
<div class="icon-block mt-3 d-flex justify-content-between">
2222
<div>
23-
<a target="_blank" href="{{ https://twitter.com/author[1].twitter }}"><i class="fab fa-twitter text-muted" aria-hidden="true"></i></a> &nbsp;
23+
{% if author[1].twitter %}
24+
<a target="_blank" href="https://twitter.com/{{ author[1].twitter }}"><i class="fab fa-twitter text-muted" aria-hidden="true"></i></a> &nbsp;
25+
{% endif %}
2426
<a target="_blank" href="{{ author[1].site }}"><i class="fa fa-globe text-muted" aria-hidden="true"></i></a> &nbsp;
2527
</div>
2628
</div>
File renamed without changes.
File renamed without changes.

_posts/2020-05-01-toward-modular-network-verification.md

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -13,21 +13,21 @@ Almost all of the techniques for network verification to date must analyze the e
1313

1414
In a modular approach to verification, each component of a system is given a *specification*, and each component is separately verified to meet its specification. Importantly, verifying each component only requires access to the specifications, not the implementations, of the components with which it interacts.
1515

16-
As an example, consider a simple software system containing a main function F that calls another function G. To prove that F meets some intended specification S, a non-modular approach would analyze the behaviors of F and G jointly. A modular approach, which is common in traditional software verification based on pre- and postconditions, is to instead define a specification T for G and thereby break the verification of F into two independent parts:
16+
As an example, consider a simple software system containing a main function $f$ that calls another function $g$. To prove that $f$ meets some intended specification $\varphi$, a non-modular approach would analyze the behaviors of $f$ and $g$ jointly. A modular approach, which is common in traditional software verification based on pre- and postconditions, is to instead define a specification $\varphi'$ for $g$ and thereby break the verification of $f$ into two independent parts:
1717

18-
* Prove that G meets the specification T.
18+
* Prove that $ g $ meets the specification $\varphi'$.
1919

20-
* Prove that F meets the specification S, under the assumption that G meets the specification T.
20+
* Prove that $f$ meets the specification $\varphi$, under the assumption that $g$ meets the specification $\varphi'$.
2121

2222
## Why modular verification?
2323

2424
Modularity will provide a number of important benefits for network verification that are absent today.
2525

26-
*Scalability.* Verification must explore all possible system behaviors. Since the number of system behaviors can grow exponentially in the system size, monolithic verification is inherently unscalable. And indeed, today the most complex forms of network verification, for example ensuring that a network’s control plane satisfies desired reachability properties in the face of any set of k link failures, do not scale to large networks. Modular verification can provide asymptotic gains in performance. Roughly, if there are n components each with m possible behaviors, then the system as a whole can have up to m^n behaviors, while a modular approach will only explore m * n behaviors.
26+
*Scalability.* Verification must explore all possible system behaviors. Since the number of system behaviors can grow exponentially in the system size, monolithic verification is inherently unscalable. And indeed, today the most complex forms of network verification, for example ensuring that a network’s control plane satisfies desired reachability properties in the face of any set of $k$ link failures, do not scale to large networks. Modular verification can provide asymptotic gains in performance. Roughly, if there are $n$ components each with $m$ possible behaviors, then the system as a whole can have up to $m^n$ behaviors, while a modular approach will only explore $m * n$ behaviors.
2727

2828
*Independent development.* Since each component's correctness only depends on the specifications, but not the implementations, of the other components, modular verification allows each component to be developed and validated independently. In the context of network verification, this means that different teams can be responsible for managing and validating different parts of a network, without requiring access to the configurations of other parts.
2929

30-
*Incremental re-verification.* Similarly, as the system is updated, it can be incrementally re-verified. For example, if a component C changes but its specification is unchanged, then only C must be re-verified. Network configurations are changed daily, to enable new services, perform security updates, etc. Fast incremental re-verification is critical to making network verification practical.
30+
*Incremental re-verification.* Similarly, as the system is updated, it can be incrementally re-verified. For example, if a component $\mathcal{C}$ changes but its specification is unchanged, then only $\mathcal{C}$ must be re-verified. Network configurations are changed daily, to enable new services, perform security updates, etc. Fast incremental re-verification is critical to making network verification practical.
3131

3232
*Design verification.* Finally, an under-appreciated benefit of modular verification is that it verifies not only the end-to-end properties of a system but also the system's internal design. A good system has a modular structure, with different components responsible for different tasks, and networks are no exception (see the next section). Modular verification directly validates this structure by verifying that each component properly performs its tasks, and verification failures are localized to the relevant component and task within the system.
3333

0 commit comments

Comments
 (0)