source: biblio/verif_biblio.html @ 73

Last change on this file since 73 was 45, checked in by cecile, 12 years ago

fichier biblio avec lien sur le compte verif

File size: 270.3 KB
Line 
1<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01//EN" "http://www.w3.org/TR/html4/strict.dtd">
2<html lang="en">
3<head>
4<title>JabRef References output</title>
5<meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
6<script type="text/javascript">
7<!--
8// QuickSearch script for JabRef HTML export
9// Version: 2.0
10//
11// Copyright (c) 2006-2008, Mark Schenk
12//
13// This software is distributed under a Creative Commons Attribution 3.0 License
14// http://creativecommons.org/licenses/by/3.0/
15
16// Some features:
17// + optionally searches Abstracts and Reviews
18// + allows RegExp searches
19//   e.g. to search for entries between 1980 and 1989, type:  198[0-9]
20//   e.g. for any entry ending with 'symmetry', type:  symmetry$
21//   e.g. for all reftypes that are books: ^book$, or ^article$
22//   e.g. for entries by either John or Doe, type john|doe
23// + easy toggling of Abstract/Review/BibTeX
24
25// Search settings
26var searchAbstract = true;
27var searchReview = true;
28
29// Speed optimisation introduced some esoteric problems with certain RegExp searches
30// e.g. if the previous search is 200[-7] and the next search is 200[4-7] then the search doesn't work properly until the next 'keyup'
31// hence the searchOpt can be turned off for RegExp adepts
32var searchOpt = true;
33
34if (window.addEventListener) {
35        window.addEventListener("load",initSearch,false); }
36else if (window.attachEvent) {
37        window.attachEvent("onload", initSearch); }
38
39function initSearch() {
40        // basic object detection
41        if(!document.getElementById || !document.getElementsByTagName) { return; }
42        if (!document.getElementById('qstable')||!document.getElementById('qs')) { return; }
43
44        // find QS table and appropriate rows
45        searchTable = document.getElementById('qstable');
46        var allRows = searchTable.getElementsByTagName('tbody')[0].getElementsByTagName('tr');
47
48        // split all rows into entryRows and infoRows (e.g. abstract, review, bibtex)
49        entryRows = new Array();
50        infoRows = new Array(); absRows = new Array(); revRows = new Array();
51
52        for (var i=0, k=0, j=0; i<allRows.length;i++) {
53                if (allRows[i].className.match(/entry/)) {
54                        entryRows[j++] = allRows[i];
55                } else {
56                        infoRows[k++] = allRows[i];
57                        // check for abstract/review
58                        if (allRows[i].className.match(/abstract/)) {
59                                absRows.push(allRows[i]);
60                        } else if (allRows[i].className.match(/review/)) {
61                                revRows.push(allRows[i]);
62                        }
63                }
64        }
65
66        //number of entries and rows
67        numRows = allRows.length;
68        numEntries = entryRows.length;
69        numInfo = infoRows.length;
70        numAbs = absRows.length;
71        numRev = revRows.length;
72
73        //find the query field
74        qsfield = document.getElementById('qsfield');
75
76        // previous search term; used for speed optimisation
77        prevSearch = '';
78
79        //find statistics location
80        stats = document.getElementById('stat');
81        setStatistics(-1);
82
83        // creates the appropriate search settings
84        createQSettingsDialog();
85
86        // shows the searchfield
87        document.getElementById('qs').style.display = 'block';
88        document.getElementById('qsfield').onkeyup = testEvent;
89}
90
91function quickSearch(tInput){
92
93         if (tInput.value.length == 0) {
94                showAll();
95                setStatistics(-1);
96                qsfield.className = '';
97                return;
98        } else {
99                // only search for valid RegExp
100                try {
101                        var searchText = new RegExp(tInput.value,"i")
102                        closeAllInfo();
103                        qsfield.className = '';
104                }
105                catch(err) {
106                        prevSearch = tInput.value;
107                        qsfield.className = 'invalidsearch';
108                        return;
109                }
110        }
111       
112        // count number of hits
113        var hits = 0;
114
115        // start looping through all entry rows
116        for (var i = 0; cRow = entryRows[i]; i++){
117
118                // only show search the cells if it isn't already hidden OR if the search term is getting shorter, then search all
119                // some further optimisation is possible: if the search string is getting shorter, and the row is already visible, skip it. Then be careful with hits!
120                if(!searchOpt || cRow.className.indexOf('noshow')==-1 || tInput.value.length <= prevSearch.length){
121                        var found = false; 
122
123                        var inCells = cRow.getElementsByTagName('td');
124                        var numCols = inCells.length;
125                               
126                        for (var j=0; j<numCols; j++) {
127                                cCell = inCells[j];
128                                var t = cCell.innerText?cCell.innerText:getTextContent(cCell);
129                                if (t.search(searchText) != -1){ 
130                                        found=true; 
131                                        break;
132                                } 
133                        }
134
135                        // look for further hits in Abstract and Review
136                        if(!found) {
137                                var articleid = cRow.id;
138                                if(searchAbstract && (abs = document.getElementById('abs_'+articleid))) {
139                                        if (getTextContent(abs).search(searchText) != -1){ found=true; } 
140                                }
141                                if(searchReview && (rev = document.getElementById('rev_'+articleid))) {
142                                        if (getTextContent(rev).search(searchText) != -1){ found=true; } 
143                                }
144                        }
145                       
146                        if(found) {
147                                cRow.className = 'entry show';
148                                hits++;
149                        } else {
150                                cRow.className = 'entry noshow';
151                        }
152                }
153        }
154
155        // update statistics
156        setStatistics(hits)
157       
158        // set previous search value
159        prevSearch = tInput.value;
160}
161
162function toggleInfo(articleid,info) {
163
164        var entry = document.getElementById(articleid);
165        var abs = document.getElementById('abs_'+articleid);
166        var rev = document.getElementById('rev_'+articleid);
167        var bib = document.getElementById('bib_'+articleid);
168                // Get the abstracts/reviews/bibtext in the right location
169        // in unsorted tables this is always the case, but in sorted tables it is necessary.
170        // Start moving in reverse order, so we get: entry, abstract,review,bibtex
171        if (searchTable.className.indexOf('sortable') != -1) {
172                if(bib) { entry.parentNode.insertBefore(bib,entry.nextSibling); }
173                if(rev) { entry.parentNode.insertBefore(rev,entry.nextSibling); }
174                if(abs) { entry.parentNode.insertBefore(abs,entry.nextSibling); }
175        }
176
177        if (abs && info == 'abstract') {
178                if(abs.className.indexOf('abstract') != -1) {
179                abs.className.indexOf('noshow') == -1?abs.className = 'abstract noshow':abs.className = 'abstract';
180                }
181        } else if (rev && info == 'review') {
182                if(rev.className.indexOf('review') != -1) {
183                rev.className.indexOf('noshow') == -1?rev.className = 'review noshow':rev.className = 'review';
184                }
185        } else if (bib && info == 'bibtex') {
186                if(bib.className.indexOf('bibtex') != -1) {
187                bib.className.indexOf('noshow') == -1?bib.className = 'bibtex noshow':bib.className = 'bibtex';
188                }               
189        } else { 
190                return;
191        }
192
193        // check if one or the other is available
194        var revshow = false;
195        var absshow = false;
196        var bibshow = false;
197        (abs && abs.className.indexOf('noshow') == -1)? absshow = true: absshow = false;
198        (rev && rev.className.indexOf('noshow') == -1)? revshow = true: revshow = false;       
199        (bib && bib.className == 'bibtex')? bibshow = true: bibshow = false;
200       
201        // highlight original entry
202        if(entry) {
203                if (revshow || absshow || bibshow) {
204                entry.className = 'entry highlight show';
205                } else {
206                entry.className = 'entry show';
207                }               
208        }
209       
210        // When there's a combination of abstract/review/bibtex showing, need to add class for correct styling
211        if(absshow) {
212                (revshow||bibshow)?abs.className = 'abstract nextshow':abs.className = 'abstract';
213        } 
214        if (revshow) {
215                bibshow?rev.className = 'review nextshow': rev.className = 'review';
216        }
217       
218}
219
220function setStatistics (hits) {
221        if(hits < 0) { hits=numEntries; }
222        if(stats) { stats.firstChild.data = hits + '/' + numEntries}
223}
224
225function getTextContent(node) {
226        // Function written by Arve Bersvendsen
227        // http://www.virtuelvis.com
228       
229        if (node.nodeType == 3) {
230        return node.nodeValue;
231        } // text node
232        if (node.nodeType == 1) { // element node
233        var text = [];
234        for (var chld = node.firstChild;chld;chld=chld.nextSibling) {
235                text.push(getTextContent(chld));
236        }
237        return text.join("");
238        } return ""; // some other node, won't contain text nodes.
239}
240
241function showAll(){
242        // first close all abstracts, reviews, etc.
243        closeAllInfo();
244
245        for (var i = 0; i < numEntries; i++){
246                entryRows[i].className = 'entry show'; 
247        }
248}
249
250function closeAllInfo(){
251        for (var i=0; i < numInfo; i++){
252                if (infoRows[i].className.indexOf('noshow') ==-1) {
253                        infoRows[i].className = infoRows[i].className + ' noshow';
254                }
255        }
256}
257
258function testEvent(e){
259        if (!e) var e = window.event;
260        quickSearch(this);
261}
262
263function clearQS() {
264        qsfield.value = '';
265        quickSearch(qsfield);
266}
267
268function redoQS(){
269        showAll();
270        quickSearch(qsfield);
271}
272
273// Create Search Settings
274
275function toggleQSettingsDialog() {
276
277        var qssettings = document.getElementById('qssettings');
278       
279        if(qssettings.className.indexOf('active')==-1) {
280                qssettings.className = 'active';
281
282                if(absCheckBox && searchAbstract == true) { absCheckBox.checked = 'checked'; }
283                if(revCheckBox && searchReview == true) { revCheckBox.checked = 'checked'; }
284
285        } else {
286                qssettings.className= '';
287        }
288}
289
290function createQSettingsDialog(){
291        var qssettingslist = document.getElementById('qssettings').getElementsByTagName('ul')[0];
292       
293        if(numAbs!=0) {
294                var x = document.createElement('input');
295                x.id = "searchAbs";
296                x.type = "checkbox";
297                x.onclick = toggleQSetting;
298                var y = qssettingslist.appendChild(document.createElement('li')).appendChild(document.createElement('label'));
299                y.appendChild(x);
300                y.appendChild(document.createTextNode('search abstracts'));             
301        }
302        if(numRev!=0) {
303                var x = document.createElement('input');
304                x.id = "searchRev";
305                x.type = "checkbox";           
306                x.onclick = toggleQSetting;
307                var y = qssettingslist.appendChild(document.createElement('li')).appendChild(document.createElement('label'));         
308                y.appendChild(x);               
309                y.appendChild(document.createTextNode('search reviews'));
310        }
311               
312        // global variables
313        absCheckBox = document.getElementById('searchAbs');
314        revCheckBox = document.getElementById('searchRev');
315       
316        // show search settings
317        if(absCheckBox||revCheckBox) {
318                document.getElementById('qssettings').style.display = 'block';
319        }
320}
321
322function toggleQSetting() {
323        if(this.id=='searchAbs') { searchAbstract = !searchAbstract; }
324        if(this.id=='searchRev') { searchReview = !searchReview; }
325        redoQS()
326} 
327-->
328</script>
329<script type="text/javascript">
330<!--
331// Sort Table Script
332// Version: 1.1
333//
334// Copyright (c) 2006-2008, Mark Schenk
335//
336// This software is distributed under a Creative Commons Attribution 3.0 License
337// http://creativecommons.org/licenses/by/3.0/
338
339// NB: slow as molasses in FireFox, especially when sorting columns with a lot of text.
340// An optimization is implemented which makes speed bearable, toggled by the following variable
341var SORT_SPEED_OPT = true;
342// a bit of browser preference: Opera does not need optimization
343if(window.opera) { SORT_SPEED_OPT=false; }
344// the optimization has one limitation on the functionality: when sorting search
345// results, the expanded info, e.g. bibtex/review, is collapsed. In the non-optimized
346// version they remain visible.
347
348
349if (window.addEventListener) {
350        window.addEventListener("load",initSortTable,false) }
351else if (window.attachEvent) {
352        window.attachEvent("onload", initSortTable); }
353
354function initSortTable() {
355var alltables = document.getElementsByTagName('table');
356for(i=0;i<alltables.length;i++) {
357        var currentTable = alltables[i];
358        if(currentTable.className.indexOf('sortable') !=-1) {
359                var thead = currentTable.getElementsByTagName('thead')[0];
360                thead.title = 'Click on any column header to sort';
361                for (var i=0;cell = thead.getElementsByTagName('th')[i];i++) {
362                        cell.onclick = function () { resortTable(this); };
363                        // make it possible to have a default sort column
364                        if(cell.className.indexOf('sort')!=-1) {
365                                resortTable(cell)
366                        }
367                }
368        }
369}
370}
371
372var SORT_COLUMN_INDEX
373
374function resortTable(td) {
375        var column = td.cellIndex;
376        var table = getParent(td,'TABLE');
377
378        var allRows = table.getElementsByTagName('tbody')[0].getElementsByTagName('tr');
379        var newRows = new Array();
380
381        for (var i=0, k=0; i<allRows.length;i++) {
382
383                var rowclass = allRows[i].className;
384
385                if (rowclass.indexOf('entry') != -1) {
386                newRows[k++] = allRows[i];
387                }
388               
389                if (SORT_SPEED_OPT) {
390                // remove highlight class
391                allRows[i].className = rowclass.replace(/highlight/,'');
392                // close information
393                if(rowclass.indexOf('entry') == -1 && rowclass.indexOf('noshow') == -1) { allRows[i].className = rowclass + ' noshow';}
394                } 
395        }
396
397
398        // If other sort functions are deemed necessary (e.g. for
399        // dates and currencies) they can be added.
400        var sortfn = ts_sort_firstchild_caseinsensitive;
401        SORT_COLUMN_INDEX = column;
402        newRows.sort(sortfn);
403
404        // create a container for showing sort arrow
405        var arrow =  td.getElementsByTagName('span')[0];
406        if (!arrow) { var arrow = td.appendChild(document.createElement('span'));}
407       
408        if (td.className) {
409                if (td.className.indexOf('sort_asc') !=-1) {
410                        td.className = td.className.replace(/_asc/,"_des");
411                        newRows.reverse();
412                        arrow.innerHTML = '&uArr;';
413                } else if (td.className.indexOf('sort_des') !=-1) {
414                        td.className = td.className.replace(/_des/,"_asc");
415                        arrow.innerHTML = '&dArr;';
416                } else { 
417                        td.className += ' sort_asc'; 
418                        arrow.innerHTML = '&dArr;';
419                }
420        } else {
421                td.className += 'sort_asc';
422                arrow.innerHTML = '&dArr;';
423        }
424       
425        // Remove the classnames and up/down arrows for the other headers
426        var ths = table.getElementsByTagName('thead')[0].getElementsByTagName('th');
427        for (var i=0; i<ths.length; i++) {
428                if(ths[i]!=td && ths[i].className.indexOf('sort_')!=-1) {
429                // argh, moronic JabRef thinks (backslash)w is an output field!!
430                //ths[i].className = ths[i].className.replace(/sort_(backslash)w{3}/,"");
431                ths[i].className = ths[i].className.replace(/sort_asc/,"");
432                ths[i].className = ths[i].className.replace(/sort_des/,"");
433
434                // remove span
435                var arrow =  ths[i].getElementsByTagName('span')[0];
436                if (arrow) { ths[i].removeChild(arrow); }
437                }
438        }
439
440        // We appendChild rows that already exist to the tbody, so it moves them rather than creating new ones
441        for (i=0;i<newRows.length;i++) { 
442                table.getElementsByTagName('tbody')[0].appendChild(newRows[i]);
443
444                if(!SORT_SPEED_OPT){
445                // moving additional information, e.g. bibtex/abstract to right locations
446                // this allows to sort, even with abstract/review/etc. still open
447                var articleid = newRows[i].id;
448
449                var entry = document.getElementById(articleid);
450                var abs = document.getElementById('abs_'+articleid);
451                var rev = document.getElementById('rev_'+articleid);
452                var bib = document.getElementById('bib_'+articleid);           
453       
454                var tbody = table.getElementsByTagName('tbody')[0];
455                // mind the order of adding the entries
456                if(abs) { tbody.appendChild(abs); }
457                if(rev) { tbody.appendChild(rev); }
458                if(bib) { tbody.appendChild(bib); }
459                }
460        }
461}
462
463function ts_sort_firstchild_caseinsensitive(a,b) {
464        // only search in .firstChild of the cells. Speeds things up tremendously in FF
465        // problem is that it won't find all the text in a cell if the firstChild is an element
466        // or if there are other elements in the cell. Risky fix, but the speed boost is worth it.
467        var acell = a.cells[SORT_COLUMN_INDEX];
468        var bcell = b.cells[SORT_COLUMN_INDEX];
469       
470        acell.firstChild? aa = getTextContent(acell.firstChild).toLowerCase():aa = "";
471        bcell.firstChild? bb = getTextContent(bcell.firstChild).toLowerCase():bb = "";
472
473        if (aa==bb) return 0;
474        if (aa<bb) return -1;
475        return 1;
476}
477
478function ts_sort_caseinsensitive(a,b) {
479        aa = getTextContent(a.cells[SORT_COLUMN_INDEX]).toLowerCase();
480        bb = getTextContent(b.cells[SORT_COLUMN_INDEX]).toLowerCase();
481        if (aa==bb) return 0;
482        if (aa<bb) return -1;
483        return 1;
484}
485
486function ts_sort_default(a,b) {
487        aa = getTextContent(a.cells[SORT_COLUMN_INDEX]);
488        bb = getTextContent(b.cells[SORT_COLUMN_INDEX]);
489        if (aa==bb) return 0;
490        if (aa<bb) return -1;
491        return 1;
492}
493
494function getParent(el, pTagName) {
495        if (el == null) { 
496                return null;
497        } else if (el.nodeType == 1 && el.tagName.toLowerCase() == pTagName.toLowerCase()) {
498                return el;
499        } else {
500                return getParent(el.parentNode, pTagName);
501        }
502}
503-->
504</script>
505
506<style type="text/css">
507body { background-color: white; font-family: "Trebuchet MS", Arial, sans-serif; font-size: 12px; line-height: 1.2; padding: 1em; color: #2E2E2E; }
508
509#qs { width: auto; border-style: solid; border-color: gray; border-width: 1px 1px 0px 1px; padding: 0.5em 0.5em; display:none; position:relative; }
510#qs form { padding: 0px; margin: 0px; }
511#qs form p { padding: 0px; margin: 0px; }
512
513.invalidsearch { background-color: red; }
514
515table { border: 1px gray solid; width: 100%; empty-cells: show; }
516th, td { border: 1px gray solid; padding: 0.5em; vertical-align: top;  }
517td { text-align: left; vertical-align: top; }
518th { background-color: #EFEFEF; }
519
520td a { color: navy; text-decoration: none; }
521td a:hover  { text-decoration: underline; }
522
523tr.noshow { display: none;}
524
525tr.highlight td { background-color: #F1F1F1; border-top: 2px black solid; font-weight: bold; }
526tr.abstract td, tr.review td, tr.bibtex td { background-color: #F1F1F1; border-bottom: 2px black solid; }
527tr.nextshow td { border-bottom: 1px gray solid; }
528
529tr.bibtex pre { width: 100%; overflow: auto;}
530
531p.infolinks { margin: 0.5em 0em 0em 0em; padding: 0px; }
532
533#qssettings { padding: 0.5em; position: absolute; top: 0.2em; right: 0.2em; border: 1px gray solid; background-color: white; display: none; }
534#qssettings p { font-weight: bold; cursor: pointer; }
535#qssettings ul { display: none; list-style-type: none; padding-left: 0; margin: 0; }
536#qssettings.active ul { display: block; }
537
538@media print {
539        p.infolinks, #qssettings, #qs { display: none !important; }
540        table { border-width: 0px; }
541        tr { page-break-inside: avoid; }
542        tr > * + * + * + * + * {display: none; }
543        thead tr::before { content: "Reference"; border: 1px gray solid; padding: 0.5em; vertical-align: top; font-weight: bold; text-align: center; display: table-cell; background-color: #EFEFEF; }
544        tr[id]::before { content: attr(id); display: table-cell; border: 1px gray solid; padding: 0.5em; vertical-align: top; font-style: italic; }
545}
546th.sort_asc, th.sort_des { border: 2px black solid; }
547
548</style>
549</head>
550<body>
551
552<div id="qs">
553        <form action="">
554        <p>QuickSearch: <input type="text" name="qsfield" id="qsfield" autocomplete="off" title="Allows plain text as well as RegExp searches" /><input type="button" onclick="clearQS()" value="clear" />&nbsp; Number of matching entries: <span id="stat">0</span>.</p>
555        <div id="qssettings">
556                <p onclick="toggleQSettingsDialog()">Search Settings</p>
557                <ul></ul>
558        </div>
559        </form>
560</div>
561<table id="qstable" class="sortable" border="1">
562<thead><tr><th width="20%">Author</th><th width="30%">Title</th><th width="4%">Year</th><th width="30%">Journal/Proceedings</th><th width="7%">Reftype</th><th width="4%">DOI/URL</th width="4%"><th>PDF</th></tr></thead>
563<tbody>
564<tr id="rulebase06userguide" class="entry">
565        <td>group, M.C.S.&nbsp;</td>
566        <td>RuleBase Parallel Edition,User's Guide <p class="infolinks">[<a href="javascript:toggleInfo('rulebase06userguide','bibtex')">BibTeX</a>]</p></td>
567        <td>2005</td>
568        <td>&nbsp;</td>
569        <td>manual</td>
570        <td>&nbsp;</td>
571        <td>&nbsp;</td>
572</tr>
573<tr id="bib_rulebase06userguide" class="bibtex noshow">
574<td colspan="7"><b>BibTeX</b>:
575<pre>
576@manual{rulebase06userguide,
577  author = {Model Checking Systems group},
578  title = {RuleBase Parallel Edition,User's Guide},
579  year = {2005},
580  note = {verion 1.26}
581}
582</pre></td>
583</tr>
584<tr id="Vis" class="entry">
585        <td>group, T. VIS.&nbsp;Rajeev Alur and Thomas A. Henzinger (Ed.)</td>
586        <td>VIS : A System for Verification and Synthesis <p class="infolinks">[<a href="javascript:toggleInfo('Vis','abstract')">Abstract</a>] [<a href="javascript:toggleInfo('Vis','bibtex')">BibTeX</a>]</p></td>
587        <td>1996</td>
588        <td><br/>Vol. 1102CAV'96: Proceedings of the 8th International Conference on Computer Aided Verification, pp. 428-432&nbsp;</td>
589        <td>inproceedings</td>
590        <td><a href="citeseer.ist.psu.edu/brayton96vis.html">URL</a>&nbsp;</td>
591        <td>&nbsp;</td>
592</tr>
593<tr id="abs_Vis" class="abstract noshow">
594        <td colspan="7"><b>Abstract</b>: Manual abstraction can be performed by giving a file containing the names of variables to abstract. For each variable appearing in the file, a new primary input node is created to drive all the nodes that were previously driven by the variable. Abstracting a net effectively allows it to take any value in its range, at every clock cycle. Fair CTL model checking and language emptiness check VIS performs fair CTL model checking under Buchi fairness constraints. In addition, VIS can perform ...</td>
595</tr>
596<tr id="bib_Vis" class="bibtex noshow">
597<td colspan="7"><b>BibTeX</b>:
598<pre>
599@inproceedings{Vis,
600  author = {The VIS group},
601  title = {VIS : A System for Verification and Synthesis},
602  booktitle = {CAV'96: Proceedings of the 8th International Conference on Computer Aided Verification},
603  publisher = {Springer-Verlag},
604  year = {1996},
605  volume = {1102},
606  pages = {428--432},
607  url = {citeseer.ist.psu.edu/brayton96vis.html}
608}
609</pre></td>
610</tr>
611<tr id="DBLP:journals/fmsd/CohenN09" class="entry">
612        <td>0002, A.C. &amp; Namjoshi, K.S.&nbsp;</td>
613        <td>Local proofs for global safety properties <p class="infolinks">[<a href="javascript:toggleInfo('DBLP:journals/fmsd/CohenN09','bibtex')">BibTeX</a>]</p></td>
614        <td>2009</td>
615        <td>Formal Methods in System Design<br/>Vol. 34(2), pp. 104-125&nbsp;</td>
616        <td>article</td>
617        <td>&nbsp;</td>
618        <td>&nbsp;</td>
619</tr>
620<tr id="bib_DBLP:journals/fmsd/CohenN09" class="bibtex noshow">
621<td colspan="7"><b>BibTeX</b>:
622<pre>
623@article{DBLP:journals/fmsd/CohenN09,
624  author = {Ariel Cohen 0002 and Kedar S. Namjoshi},
625  title = {Local proofs for global safety properties},
626  journal = {Formal Methods in System Design},
627  year = {2009},
628  volume = {34},
629  number = {2},
630  pages = {104-125}
631}
632</pre></td>
633</tr>
634<tr id="aagaard03hazards" class="entry">
635        <td>Aagaard, M.&nbsp;Daniel Geist and Enrico Tronci (Ed.)</td>
636        <td>A Hazards-Based Correctness Statement for Pipelined Circuits. <p class="infolinks">[<a href="javascript:toggleInfo('aagaard03hazards','bibtex')">BibTeX</a>]</p></td>
637        <td>2003</td>
638        <td><br/>Vol. 2860Proceedings of the 12th IFIP WG 10.5 Advanced Research Working Conference, pp. 66-80&nbsp;</td>
639        <td>inproceedings</td>
640        <td>&nbsp;</td>
641        <td><div class="bibtex_pdf">
642            <a href="docs/aagard.pdf">PDF</a>
643          </div>&nbsp;</td>
644</tr>
645<tr id="bib_aagaard03hazards" class="bibtex noshow">
646<td colspan="7"><b>BibTeX</b>:
647<pre>
648@inproceedings{aagaard03hazards,
649  author = {M.~Aagaard},
650  title = {A Hazards-Based Correctness Statement for Pipelined Circuits.},
651  booktitle = {Proceedings of the 12th IFIP WG 10.5 Advanced Research Working Conference},
652  publisher = {Springer},
653  year = {2003},
654  volume = {2860},
655  pages = {66-80}
656}
657</pre></td>
658</tr>
659<tr id="alder06ticc" class="entry">
660        <td>Adler, B., de Alfaro, L., da Silva, L.D., Faella, M., Legay, A., Raman, V. &amp; Roy, P.&nbsp;Thomas Ball and Robert B. Jones (Ed.)</td>
661        <td>Ticc: A Tool for Interface Compatibility and Composition. <p class="infolinks">[<a href="javascript:toggleInfo('alder06ticc','bibtex')">BibTeX</a>]</p></td>
662        <td>2006</td>
663        <td><br/>Vol. 4144CAV'06: Proceedings of 18th International Conference of Computer Aided Verification, pp. 59-62&nbsp;</td>
664        <td>inproceedings</td>
665        <td>&nbsp;</td>
666        <td><div class="bibtex_pdf">
667            <a href="docs/tiicctool.pdf">PDF</a>
668          </div>&nbsp;</td>
669</tr>
670<tr id="bib_alder06ticc" class="bibtex noshow">
671<td colspan="7"><b>BibTeX</b>:
672<pre>
673@inproceedings{alder06ticc,
674  author = {B.T.~Adler and L.~de Alfaro and L.~Dias da Silva and M.~Faella and A.~Legay and V.~Raman and P.~Roy},
675  title = {Ticc: A Tool for Interface Compatibility and Composition.},
676  booktitle = {CAV'06: Proceedings of 18th International Conference of Computer Aided Verification},
677  year = {2006},
678  volume = {4144},
679  pages = {59-62}
680}
681</pre></td>
682</tr>
683<tr id="akers78" class="entry">
684        <td>Akers, B.&nbsp;</td>
685        <td>Binary Decision Diagrams <p class="infolinks">[<a href="javascript:toggleInfo('akers78','abstract')">Abstract</a>] [<a href="javascript:toggleInfo('akers78','bibtex')">BibTeX</a>]</p></td>
686        <td>1978</td>
687        <td>IEEE Transactions on Computers<br/>Vol. 27(6), pp. 509-516&nbsp;</td>
688        <td>article</td>
689        <td>&nbsp;</td>
690        <td>&nbsp;</td>
691</tr>
692<tr id="abs_akers78" class="abstract noshow">
693        <td colspan="7"><b>Abstract</b>:  The seminal paper in which BDD's were introduced. Note that none of the today implementation techniques for BDD package is given in this paper. </td>
694</tr>
695<tr id="bib_akers78" class="bibtex noshow">
696<td colspan="7"><b>BibTeX</b>:
697<pre>
698@article{akers78,
699  author = {B.~Akers},
700  title = {Binary Decision Diagrams},
701  journal = {IEEE Transactions on Computers},
702  year = {1978},
703  volume = {27},
704  number = {6},
705  pages = {509--516}
706}
707</pre></td>
708</tr>
709<tr id="alfaro01interface" class="entry">
710        <td>de Alfaro, L. &amp; Henzinger, T.&nbsp;</td>
711        <td>Interface automata <p class="infolinks">[<a href="javascript:toggleInfo('alfaro01interface','bibtex')">BibTeX</a>]</p></td>
712        <td>2001</td>
713        <td>ESEC/FSE-9: Proceedings of the 8th European software engineering conference held jointly with 9th ACM SIGSOFT international symposium on Foundations of software engineering, pp. 109-120&nbsp;</td>
714        <td>inproceedings</td>
715        <td><a href="http://doi.acm.org/10.1145/503209.503226">DOI</a> &nbsp;</td>
716        <td>&nbsp;</td>
717</tr>
718<tr id="bib_alfaro01interface" class="bibtex noshow">
719<td colspan="7"><b>BibTeX</b>:
720<pre>
721@inproceedings{alfaro01interface,
722  author = {L.~de Alfaro and T.A.~Henzinger},
723  title = {Interface automata},
724  booktitle = {ESEC/FSE-9: Proceedings of the 8th European software engineering conference held jointly with 9th ACM SIGSOFT international symposium on Foundations of software engineering},
725  publisher = {ACM Press},
726  year = {2001},
727  pages = {109--120},
728  doi = {http://doi.acm.org/10.1145/503209.503226}
729}
730</pre></td>
731</tr>
732<tr id="DBLP:conf/frocos/AlfaroSFLRS05" class="entry">
733        <td>de Alfaro, L., da Silva, L.D., Faella, M., Legay, A., Roy, P. &amp; Sorea, M.&nbsp;Bernhard Gramlich (Ed.)</td>
734        <td>Sociable Interfaces. <p class="infolinks">[<a href="javascript:toggleInfo('DBLP:conf/frocos/AlfaroSFLRS05','bibtex')">BibTeX</a>]</p></td>
735        <td>2005</td>
736        <td><br/>Vol. 3717FroCos'05: Proceedings of the 5th International Workshop on Frontiers of Combining Systems, pp. 81-105&nbsp;</td>
737        <td>inproceedings</td>
738        <td>&nbsp;</td>
739        <td>&nbsp;</td>
740</tr>
741<tr id="bib_DBLP:conf/frocos/AlfaroSFLRS05" class="bibtex noshow">
742<td colspan="7"><b>BibTeX</b>:
743<pre>
744@inproceedings{DBLP:conf/frocos/AlfaroSFLRS05,
745  author = {Luca de Alfaro and Leandro Dias da Silva and Marco Faella and Axel Legay and Pritam Roy and Maria Sorea},
746  title = {Sociable Interfaces.},
747  booktitle = {FroCos'05: Proceedings of the 5th International Workshop on Frontiers of Combining Systems},
748  publisher = {Springer},
749  year = {2005},
750  volume = {3717},
751  pages = {81-105}
752}
753</pre></td>
754</tr>
755<tr id="bhdl03" class="entry">
756        <td>Aljer, A., Devienne, P., Tison, S., Boulanger, J.-L. &amp; Mariano, G.&nbsp;IEEE Computer Society (Ed.)</td>
757        <td>BHDL: Circuit Design in B <p class="infolinks">[<a href="javascript:toggleInfo('bhdl03','bibtex')">BibTeX</a>]</p></td>
758        <td>2003</td>
759        <td>ACSD '03: Proceedings of the Third International Conference on Application of Concurrency to System Design, pp. 241&nbsp;</td>
760        <td>inproceedings</td>
761        <td>&nbsp;</td>
762        <td>&nbsp;</td>
763</tr>
764<tr id="bib_bhdl03" class="bibtex noshow">
765<td colspan="7"><b>BibTeX</b>:
766<pre>
767@inproceedings{bhdl03,
768  author = {A.~Aljer and P.~Devienne and S.~Tison and J-L.~Boulanger and G.~Mariano},
769  title = {BHDL: Circuit Design in B},
770  booktitle = {ACSD '03: Proceedings of the Third International Conference on Application of Concurrency to System Design},
771  year = {2003},
772  pages = {241}
773}
774</pre></td>
775</tr>
776<tr id="alur99automating" class="entry">
777        <td>Alur, R., de Alfaro, L., Henzinger, T.A. &amp; Mang, F.Y.&nbsp;Jos C. M. Baeten and Sjouke Mauw (Ed.)</td>
778        <td>Automating Modular Verification <p class="infolinks">[<a href="javascript:toggleInfo('alur99automating','abstract')">Abstract</a>] [<a href="javascript:toggleInfo('alur99automating','bibtex')">BibTeX</a>]</p></td>
779        <td>1999</td>
780        <td><br/>Vol. 1664CONCUR '99: Concurrency Theory, 10th International Conference, Eindhoven, The Netherlands, August 24-27, 1999, Proceedings, pp. 82-97&nbsp;</td>
781        <td>inproceedings</td>
782        <td><a href="http://link.springer.de/link/service/series/0558/bibs/1664/16640082.htm">URL</a>&nbsp;</td>
783        <td><div class="bibtex_pdf">
784            <a href="docs/automatic_modular.pdf">PDF</a>
785          </div>&nbsp;</td>
786</tr>
787<tr id="abs_alur99automating" class="abstract noshow">
788        <td colspan="7"><b>Abstract</b>: Modular techniques for automatic verification attempt to overcome the state-explosion problem by exploiting the modular structure naturally present in many system designs. Unlike other tasks in the verification of finite-state systems, current modular techniques rely heavily on user guidance. In particular, the user is typically required to construct module abstractions that are neither too detailed as to render insufficient benefits in state exploration, nor too coarse as to invalidate the desired system properties. In this paper, we construct abstract modules automatically, using reachability and controllability information about the concrete modules. This allows us to leverage automatic verification techniques by applying them in layers: first we compute on the state spaces of system components, then we use the results for constructing abstractions, and finally we compute on the abstract state space of the system. Our experimental results indicate that if reachability and controllabil ity information is used in the construction of abstractions, the resulting abstract modules are often significantly smaller than the concrete modules and can drastically reduce the space and time requirements for verification.</td>
789</tr>
790<tr id="bib_alur99automating" class="bibtex noshow">
791<td colspan="7"><b>BibTeX</b>:
792<pre>
793@inproceedings{alur99automating,
794  author = {R. Alur and L.~de Alfaro and T. A. Henzinger and F.~Y.C. Mang},
795  title = {Automating Modular Verification},
796  booktitle = {CONCUR '99: Concurrency Theory, 10th International Conference, Eindhoven, The Netherlands, August 24-27, 1999, Proceedings},
797  publisher = {Springer},
798  year = {1999},
799  volume = {1664},
800  pages = {82-97},
801  url = {http://link.springer.de/link/service/series/0558/bibs/1664/16640082.htm}
802}
803</pre></td>
804</tr>
805<tr id="DBLP:journals/fmsd/AlurH99b" class="entry">
806        <td>Alur, R. &amp; Henzinger, T.&nbsp;</td>
807        <td>Reactive Modules. <p class="infolinks">[<a href="javascript:toggleInfo('DBLP:journals/fmsd/AlurH99b','bibtex')">BibTeX</a>]</p></td>
808        <td>1999</td>
809        <td>Formal Methods in System Design<br/>Vol. 15(1), pp. 7-48&nbsp;</td>
810        <td>article</td>
811        <td>&nbsp;</td>
812        <td>&nbsp;</td>
813</tr>
814<tr id="bib_DBLP:journals/fmsd/AlurH99b" class="bibtex noshow">
815<td colspan="7"><b>BibTeX</b>:
816<pre>
817@article{DBLP:journals/fmsd/AlurH99b,
818  author = {R.~Alur and T.A.~Henzinger},
819  title = {Reactive Modules.},
820  journal = {Formal Methods in System Design},
821  publisher = {Springer},
822  year = {1999},
823  volume = {15},
824  number = {1},
825  pages = {7-48}
826}
827</pre></td>
828</tr>
829<tr id="alur98alternatingtime" class="entry">
830        <td>Alur, R., Henzinger, T.A. &amp; Kupferman, O.&nbsp;Willem P. de Roever and Hans Langmaack and Amir Pnueli (Ed.)</td>
831        <td>Alternating-Time Temporal Logic <p class="infolinks">[<a href="javascript:toggleInfo('alur98alternatingtime','bibtex')">BibTeX</a>]</p></td>
832        <td>1997</td>
833        <td><br/>Vol. 1536COMPOS, pp. 23-60&nbsp;</td>
834        <td>inproceedings</td>
835        <td>&nbsp;</td>
836        <td>&nbsp;</td>
837</tr>
838<tr id="bib_alur98alternatingtime" class="bibtex noshow">
839<td colspan="7"><b>BibTeX</b>:
840<pre>
841@inproceedings{alur98alternatingtime,
842  author = {Rajeev Alur and Thomas A. Henzinger and Orna Kupferman},
843  title = {Alternating-Time Temporal Logic},
844  booktitle = {COMPOS},
845  publisher = {Springer},
846  year = {1997},
847  volume = {1536},
848  pages = {23-60}
849}
850</pre></td>
851</tr>
852<tr id="alur98mocha" class="entry">
853        <td>Alur, R., Henzinger, T., Mang, F.C., Qadeer, S., Rajamani, S. &amp; Tasiran, S.&nbsp;</td>
854        <td>MOCHA: Modularity in Model Checking <p class="infolinks">[<a href="javascript:toggleInfo('alur98mocha','abstract')">Abstract</a>] [<a href="javascript:toggleInfo('alur98mocha','bibtex')">BibTeX</a>]</p></td>
855        <td>1998</td>
856        <td><br/>Vol. 1427CAV'98: Proceedings of the 10th International Conference on Computer Aided Verification, pp. 521-525&nbsp;</td>
857        <td>inproceedings</td>
858        <td>&nbsp;</td>
859        <td><div class="bibtex_pdf">
860            <a href="docs/alur98mocha.ps.gz">PDF</a>
861          </div>&nbsp;</td>
862</tr>
863<tr id="abs_alur98mocha" class="abstract noshow">
864        <td colspan="7"><b>Abstract</b>: We describe a new interactive verification environment called Mocha for modular verification of heterogeneous systems. Mocha differs from existing model checkers in three important ways. First, instead of manipulating unstructured statetransition graphs, it supports the heterogeneous modeling framework of Reactive Modules. Second, instead of traditional temporal logics such as CTL, it uses Alternating Temporal Logic (ATL), a temporal logic that is designed to specify collaborative as ...</td>
865</tr>
866<tr id="bib_alur98mocha" class="bibtex noshow">
867<td colspan="7"><b>BibTeX</b>:
868<pre>
869@inproceedings{alur98mocha,
870  author = {R.~Alur and T.A.~Henzinger and F.Y. C.~Mang and S.~Qadeer and S.K.~Rajamani and S.~Tasiran},
871  title = {MOCHA: Modularity in Model Checking},
872  booktitle = {CAV'98: Proceedings of the 10th International Conference on Computer Aided Verification},
873  year = {1998},
874  volume = {1427},
875  pages = {521-525}
876}
877</pre></td>
878</tr>
879<tr id="amla01assume" class="entry">
880        <td>Amla, N., Emerson, E.A., Namjoshi, K.S. &amp; Trefler, R.J.&nbsp;</td>
881        <td>Assume-Guarantee Based Compositional Reasoning for Synchronous Timing Diagrams <p class="infolinks">[<a href="javascript:toggleInfo('amla01assume','bibtex')">BibTeX</a>]</p></td>
882        <td>2001</td>
883        <td>TACAS 2001: Proceedings of the 7th International Conference on Tools and Algorithms for the Construction and Analysis of Systems, pp. 465-479&nbsp;</td>
884        <td>inproceedings</td>
885        <td>&nbsp;</td>
886        <td>&nbsp;</td>
887</tr>
888<tr id="bib_amla01assume" class="bibtex noshow">
889<td colspan="7"><b>BibTeX</b>:
890<pre>
891@inproceedings{amla01assume,
892  author = {N.~Amla and E.~A.~Emerson and K.~S.~Namjoshi and R.~J.~Trefler},
893  title = {Assume-Guarantee Based Compositional Reasoning for Synchronous Timing Diagrams},
894  booktitle = {TACAS 2001: Proceedings of the 7th International Conference on Tools and Algorithms for the Construction and Analysis of Systems},
895  publisher = {Springer-Verlag},
896  year = {2001},
897  pages = {465--479}
898}
899</pre></td>
900</tr>
901<tr id="DBLP:conf/lpar/AndrausLS08" class="entry">
902        <td>Andraus, Z.S., Liffiton, M.H. &amp; Sakallah, K.A.&nbsp;Iliano Cervesato and Helmut Veith and Andrei Voronkov (Ed.)</td>
903        <td>Reveal: A Formal Verification Tool for Verilog Designs <p class="infolinks">[<a href="javascript:toggleInfo('DBLP:conf/lpar/AndrausLS08','bibtex')">BibTeX</a>]</p></td>
904        <td>2008</td>
905        <td><br/>Vol. 5330LPAR, pp. 343-352&nbsp;</td>
906        <td>inproceedings</td>
907        <td>&nbsp;</td>
908        <td>&nbsp;</td>
909</tr>
910<tr id="bib_DBLP:conf/lpar/AndrausLS08" class="bibtex noshow">
911<td colspan="7"><b>BibTeX</b>:
912<pre>
913@inproceedings{DBLP:conf/lpar/AndrausLS08,
914  author = {Zaher S. Andraus and Mark H. Liffiton and Karem A. Sakallah},
915  title = {Reveal: A Formal Verification Tool for Verilog Designs},
916  booktitle = {LPAR},
917  publisher = {Springer},
918  year = {2008},
919  volume = {5330},
920  pages = {343-352}
921}
922</pre></td>
923</tr>
924<tr id="DBLP:conf/dac/AndrausS04" class="entry">
925        <td>Andraus, Z.S. &amp; Sakallah, K.A.&nbsp;Sharad Malik and Limor Fix and Andrew B. Kahng (Ed.)</td>
926        <td>Automatic abstraction and verification of verilog models <p class="infolinks">[<a href="javascript:toggleInfo('DBLP:conf/dac/AndrausS04','bibtex')">BibTeX</a>]</p></td>
927        <td>2004</td>
928        <td>DAC, pp. 218-223&nbsp;</td>
929        <td>inproceedings</td>
930        <td>&nbsp;</td>
931        <td><div class="bibtex_pdf">
932            <a href="docs/Andraus_DAC_Vapor.pdf">PDF</a>
933          </div>&nbsp;</td>
934</tr>
935<tr id="bib_DBLP:conf/dac/AndrausS04" class="bibtex noshow">
936<td colspan="7"><b>BibTeX</b>:
937<pre>
938@inproceedings{DBLP:conf/dac/AndrausS04,
939  author = {Zaher S. Andraus and Karem A. Sakallah},
940  title = {Automatic abstraction and verification of verilog models},
941  booktitle = {DAC},
942  publisher = {ACM},
943  year = {2004},
944  pages = {218-223}
945}
946</pre></td>
947</tr>
948<tr id="arieliA98value" class="entry">
949        <td>Arieli, O. &amp; Avron, A.&nbsp;</td>
950        <td>The Value of the Four Values. <p class="infolinks">[<a href="javascript:toggleInfo('arieliA98value','bibtex')">BibTeX</a>]</p></td>
951        <td>1998</td>
952        <td>Artif. Intell.<br/>Vol. 102(1), pp. 97-141&nbsp;</td>
953        <td>article</td>
954        <td>&nbsp;</td>
955        <td><div class="bibtex_pdf">
956            <a href="docs/arieli98four.ps">PDF</a>
957          </div>&nbsp;</td>
958</tr>
959<tr id="bib_arieliA98value" class="bibtex noshow">
960<td colspan="7"><b>BibTeX</b>:
961<pre>
962@article{arieliA98value,
963  author = {Ofer Arieli and Arnon Avron},
964  title = {The Value of the Four Values.},
965  journal = {Artif. Intell.},
966  year = {1998},
967  volume = {102},
968  number = {1},
969  pages = {97-141}
970}
971</pre></td>
972</tr>
973<tr id="arnold94finite" class="entry">
974        <td>Arnold, A.&nbsp;Translator-John Plaice (Ed.)</td>
975        <td>Finite Transition Systems: Semantics of Communicating Systems <p class="infolinks">[<a href="javascript:toggleInfo('arnold94finite','bibtex')">BibTeX</a>]</p></td>
976        <td>1994</td>
977        <td>&nbsp;</td>
978        <td>book</td>
979        <td>&nbsp;</td>
980        <td>&nbsp;</td>
981</tr>
982<tr id="bib_arnold94finite" class="bibtex noshow">
983<td colspan="7"><b>BibTeX</b>:
984<pre>
985@book{arnold94finite,
986  author = {A.~Arnold},
987  title = {Finite Transition Systems: Semantics of Communicating Systems},
988  publisher = {Prentice Hall International Ltd.},
989  year = {1994}
990}
991</pre></td>
992</tr>
993<tr id="DBLP:journals/entcs/AwedhS06" class="entry">
994        <td>Awedh, M. &amp; Somenzi, F.&nbsp;</td>
995        <td>Termination Criteria for Bounded Model Checking: Extensions and Comparison <p class="infolinks">[<a href="javascript:toggleInfo('DBLP:journals/entcs/AwedhS06','bibtex')">BibTeX</a>]</p></td>
996        <td>2006</td>
997        <td>Electronic Notes in Theoritical Computer Science.<br/>Vol. 144(1), pp. 51-66&nbsp;</td>
998        <td>article</td>
999        <td>&nbsp;</td>
1000        <td><div class="bibtex_pdf">
1001            <a href="docs/TerminationCriteriaForBMC06.pdf">PDF</a>
1002          </div>&nbsp;</td>
1003</tr>
1004<tr id="bib_DBLP:journals/entcs/AwedhS06" class="bibtex noshow">
1005<td colspan="7"><b>BibTeX</b>:
1006<pre>
1007@article{DBLP:journals/entcs/AwedhS06,
1008  author = {M.~Awedh and F.~Somenzi},
1009  title = {Termination Criteria for Bounded Model Checking: Extensions and Comparison},
1010  journal = {Electronic Notes in Theoritical Computer Science.},
1011  year = {2006},
1012  volume = {144},
1013  number = {1},
1014  pages = {51-66}
1015}
1016</pre></td>
1017</tr>
1018<tr id="Awhed04Proving" class="entry">
1019        <td>Awedh, M. &amp; Somenzi, F.&nbsp;Rajeev Alur and Doron Peled (Ed.)</td>
1020        <td>Proving More Properties with Bounded Model Checking <p class="infolinks">[<a href="javascript:toggleInfo('Awhed04Proving','bibtex')">BibTeX</a>]</p></td>
1021        <td>2004</td>
1022        <td><br/>Vol. 3114CAV'04: Proceedings of the 16th International Conference on Computer Aided Verification, pp. 96-108&nbsp;</td>
1023        <td>inproceedings</td>
1024        <td>&nbsp;</td>
1025        <td><div class="bibtex_pdf">
1026            <a href="docs/ProvingMorePropwithBC04.pdf">PDF</a>
1027          </div>&nbsp;</td>
1028</tr>
1029<tr id="bib_Awhed04Proving" class="bibtex noshow">
1030<td colspan="7"><b>BibTeX</b>:
1031<pre>
1032@inproceedings{Awhed04Proving,
1033  author = {M.~Awedh and F.~Somenzi},
1034  title = {Proving More Properties with Bounded Model Checking},
1035  booktitle = {CAV'04: Proceedings of the 16th International Conference on Computer Aided Verification},
1036  publisher = {Springer},
1037  year = {2004},
1038  volume = {3114},
1039  pages = {96-108}
1040}
1041</pre></td>
1042</tr>
1043<tr id="bmanual" class="entry">
1044        <td>B-Core(UK) Ltd.&nbsp;</td>
1045        <td>B-Toolkit User's Manual <p class="infolinks">[<a href="javascript:toggleInfo('bmanual','bibtex')">BibTeX</a>]</p></td>
1046        <td>1997</td>
1047        <td>&nbsp;</td>
1048        <td>manual</td>
1049        <td><a href="http://www.b-core.com/downloading.html">URL</a>&nbsp;</td>
1050        <td>&nbsp;</td>
1051</tr>
1052<tr id="bib_bmanual" class="bibtex noshow">
1053<td colspan="7"><b>BibTeX</b>:
1054<pre>
1055@manual{bmanual,
1056  author = {B-Core(UK) Ltd.},
1057  title = {B-Toolkit User's Manual},
1058  year = {1997},
1059  edition = {release 3.7},
1060  url = {http://www.b-core.com/downloading.html}
1061}
1062</pre></td>
1063</tr>
1064<tr id="BP-msr03" class="entry">
1065        <td>Baclet, M. &amp; Pacalet, R.&nbsp;Dominique M&eacute;ry and Nidhal Rezg and Xiaolan Xie (Ed.)</td>
1066        <td>V&eacute;rifications du protocole~VCI <p class="infolinks">[<a href="javascript:toggleInfo('BP-msr03','bibtex')">BibTeX</a>]</p></td>
1067        <td>2003</td>
1068        <td>Actes du 4&egrave;me Colloque sur la Mod&eacute;lisation des Syst&egrave;mes R&eacute;actifs (MSR'03), pp. 431-445&nbsp;</td>
1069        <td>inproceedings</td>
1070        <td><a href="http://www.lsv.ens-cachan.fr/Publis/PAPERS/PS/vci-msr03.ps">URL</a>&nbsp;</td>
1071        <td>&nbsp;</td>
1072</tr>
1073<tr id="bib_BP-msr03" class="bibtex noshow">
1074<td colspan="7"><b>BibTeX</b>:
1075<pre>
1076@inproceedings{BP-msr03,
1077  author = {M.~Baclet and R.~Pacalet},
1078  title = {V&eacute;rifications du protocole~VCI},
1079  booktitle = {Actes du 4&egrave;me Colloque sur la Mod&eacute;lisation des Syst&egrave;mes R&eacute;actifs (MSR'03)},
1080  publisher = {Herm&egrave;s},
1081  year = {2003},
1082  pages = {431-445},
1083  url = {http://www.lsv.ens-cachan.fr/Publis/PAPERS/PS/vci-msr03.ps}
1084}
1085</pre></td>
1086</tr>
1087<tr id="broissyval" class="entry">
1088        <td>Badeau, F. &amp; Amelot, A.&nbsp;</td>
1089        <td>Using B as a High Level Programming Language in an Industrial Project: Roissy VAL <p class="infolinks">[<a href="javascript:toggleInfo('broissyval','bibtex')">BibTeX</a>]</p></td>
1090        <td>2005</td>
1091        <td><br/>Vol. 3455/2005ZB 2005: Formal Specification and Development in Z and B, pp. 334-354&nbsp;</td>
1092        <td>inproceedings</td>
1093        <td><a href="http://dx.doi.org/10.1007/11415787_20">DOI</a> <a href="http://www.springerlink.com/content/x8mcgk2p8r82e2gl/">URL</a>&nbsp;</td>
1094        <td>&nbsp;</td>
1095</tr>
1096<tr id="bib_broissyval" class="bibtex noshow">
1097<td colspan="7"><b>BibTeX</b>:
1098<pre>
1099@inproceedings{broissyval,
1100  author = {F.~Badeau and A.~Amelot},
1101  title = {Using B as a High Level Programming Language in an Industrial Project: Roissy VAL},
1102  booktitle = {ZB 2005: Formal Specification and Development in Z and B},
1103  publisher = {Springer Berlin / Heidelberg},
1104  year = {2005},
1105  volume = {3455/2005},
1106  pages = {334-354},
1107  url = {http://www.springerlink.com/content/x8mcgk2p8r82e2gl/},
1108  doi = {http://dx.doi.org/10.1007/11415787_20}
1109}
1110</pre></td>
1111</tr>
1112<tr id="503274" class="entry">
1113        <td>Ball, T. &amp; Rajamani, S.&nbsp;</td>
1114        <td>The SLAM project: debugging system software via static analysis <p class="infolinks">[<a href="javascript:toggleInfo('503274','bibtex')">BibTeX</a>]</p></td>
1115        <td>2002</td>
1116        <td>POPL '02: Proceedings of the 29th ACM SIGPLAN-SIGACT symposium on Principles of programming languages, pp. 1-3&nbsp;</td>
1117        <td>inproceedings</td>
1118        <td><a href="http://doi.acm.org/10.1145/503272.503274">DOI</a> &nbsp;</td>
1119        <td>&nbsp;</td>
1120</tr>
1121<tr id="bib_503274" class="bibtex noshow">
1122<td colspan="7"><b>BibTeX</b>:
1123<pre>
1124@inproceedings{503274,
1125  author = {T.~Ball and S.K.~Rajamani},
1126  title = {The SLAM project: debugging system software via static analysis},
1127  booktitle = {POPL '02: Proceedings of the 29th ACM SIGPLAN-SIGACT symposium on Principles of programming languages},
1128  year = {2002},
1129  pages = {1--3},
1130  doi = {http://doi.acm.org/10.1145/503272.503274}
1131}
1132</pre></td>
1133</tr>
1134<tr id="rulebase96" class="entry">
1135        <td>Beer, I., Ben-David, S., Eisner, C. &amp; Landver, A.&nbsp;</td>
1136        <td>RuleBase: an industry-oriented formal verification tool <p class="infolinks">[<a href="javascript:toggleInfo('rulebase96','bibtex')">BibTeX</a>]</p></td>
1137        <td>1996</td>
1138        <td>DAC '96: Proceedings of the 33rd annual conference on Design automation, pp. 655-660&nbsp;</td>
1139        <td>inproceedings</td>
1140        <td><a href="http://doi.acm.org/10.1145/240518.240642">DOI</a> &nbsp;</td>
1141        <td>&nbsp;</td>
1142</tr>
1143<tr id="bib_rulebase96" class="bibtex noshow">
1144<td colspan="7"><b>BibTeX</b>:
1145<pre>
1146@inproceedings{rulebase96,
1147  author = {I.~Beer and S.~Ben-David and C.~Eisner and A.~Landver},
1148  title = {RuleBase: an industry-oriented formal verification tool},
1149  booktitle = {DAC '96: Proceedings of the 33rd annual conference on Design automation},
1150  year = {1996},
1151  pages = {655--660},
1152  doi = {http://doi.acm.org/10.1145/240518.240642}
1153}
1154</pre></td>
1155</tr>
1156<tr id="bmethod99meteor" class="entry">
1157        <td>Behm, P., Benoit, P., Faivre, A. &amp; Meynadier, J.-M.&nbsp;Jeannette M. Wing and Jim Woodcock and Jim Davies (Ed.)</td>
1158        <td>M&eacute;t&eacute;or: A Successful Application of B in a Large Project <p class="infolinks">[<a href="javascript:toggleInfo('bmethod99meteor','bibtex')">BibTeX</a>]</p></td>
1159        <td>1999</td>
1160        <td><br/>Vol. 1708World Congress on Formal Methods, pp. 369-387&nbsp;</td>
1161        <td>inproceedings</td>
1162        <td>&nbsp;</td>
1163        <td>&nbsp;</td>
1164</tr>
1165<tr id="bib_bmethod99meteor" class="bibtex noshow">
1166<td colspan="7"><b>BibTeX</b>:
1167<pre>
1168@inproceedings{bmethod99meteor,
1169  author = {P.~Behm and P.~Benoit and A.~Faivre and J-M.~Meynadier},
1170  title = {M&eacute;t&eacute;or: A Successful Application of B in a Large Project},
1171  booktitle = {World Congress on Formal Methods},
1172  publisher = {Springer},
1173  year = {1999},
1174  volume = {1708},
1175  pages = {369-387}
1176}
1177</pre></td>
1178</tr>
1179<tr id="1517440" class="entry">
1180        <td>Bjesse, P.&nbsp;</td>
1181        <td>Word-level sequential memory abstraction for model checking <p class="infolinks">[<a href="javascript:toggleInfo('1517440','bibtex')">BibTeX</a>]</p></td>
1182        <td>2008</td>
1183        <td>FMCAD '08: Proceedings of the 2008 International Conference on Formal Methods in Computer-Aided Design, pp. 1-9&nbsp;</td>
1184        <td>inproceedings</td>
1185        <td>&nbsp;</td>
1186        <td><div class="bibtex_pdf">
1187            <a href="docs/worllevelSeqMemAbstrforMCbjesse08.pdf">PDF</a>
1188          </div>&nbsp;</td>
1189</tr>
1190<tr id="bib_1517440" class="bibtex noshow">
1191<td colspan="7"><b>BibTeX</b>:
1192<pre>
1193@inproceedings{1517440,
1194  author = {Bjesse, Per},
1195  title = {Word-level sequential memory abstraction for model checking},
1196  booktitle = {FMCAD '08: Proceedings of the 2008 International Conference on Formal Methods in Computer-Aided Design},
1197  publisher = {IEEE Press},
1198  year = {2008},
1199  pages = {1--9}
1200}
1201</pre></td>
1202</tr>
1203<tr id="prosyd05" class="entry">
1204        <td>Bloem, R., Jobstmann, B. &amp; Pnueli., A.&nbsp;</td>
1205        <td>Property-based Logic Synthesis for Rapid Design Prototyping <p class="infolinks">[<a href="javascript:toggleInfo('prosyd05','bibtex')">BibTeX</a>]</p></td>
1206        <td>2005</td>
1207        <td>&nbsp;</td>
1208        <td>techreport</td>
1209        <td>&nbsp;</td>
1210        <td>&nbsp;</td>
1211</tr>
1212<tr id="bib_prosyd05" class="bibtex noshow">
1213<td colspan="7"><b>BibTeX</b>:
1214<pre>
1215@techreport{prosyd05,
1216  author = {R. Bloem and B. Jobstmann and A. Pnueli.},
1217  title = {Property-based Logic Synthesis for Rapid Design Prototyping},
1218  year = {2005}
1219}
1220</pre></td>
1221</tr>
1222<tr id="bozga97protocol" class="entry">
1223        <td>Bozga, M., Fernandez, J.-C., Kerbrat, A. &amp; Mounier, L.&nbsp;</td>
1224        <td>Protocol Verification with the ALD&Eacute;BARAN Toolset. <p class="infolinks">[<a href="javascript:toggleInfo('bozga97protocol','bibtex')">BibTeX</a>]</p></td>
1225        <td>1997</td>
1226        <td>STTT<br/>Vol. 1(1-2), pp. 166-184&nbsp;</td>
1227        <td>article</td>
1228        <td>&nbsp;</td>
1229        <td>&nbsp;</td>
1230</tr>
1231<tr id="bib_bozga97protocol" class="bibtex noshow">
1232<td colspan="7"><b>BibTeX</b>:
1233<pre>
1234@article{bozga97protocol,
1235  author = {M.~Bozga and J-C.~Fernandez and A.~Kerbrat and L.~Mounier},
1236  title = {Protocol Verification with the ALD&Eacute;BARAN Toolset.},
1237  journal = {STTT},
1238  publisher = {Springer},
1239  year = {1997},
1240  volume = {1},
1241  number = {1-2},
1242  pages = {166-184}
1243}
1244</pre></td>
1245</tr>
1246<tr id="DBLP:conf/vmcai/Bradley11" class="entry">
1247        <td>Bradley, A.R.&nbsp;Ranjit Jhala and David A. Schmidt (Ed.)</td>
1248        <td>SAT-Based Model Checking without Unrolling <p class="infolinks">[<a href="javascript:toggleInfo('DBLP:conf/vmcai/Bradley11','bibtex')">BibTeX</a>]</p></td>
1249        <td>2011</td>
1250        <td><br/>Vol. 6538VMCAI, pp. 70-87&nbsp;</td>
1251        <td>inproceedings</td>
1252        <td>&nbsp;</td>
1253        <td>&nbsp;</td>
1254</tr>
1255<tr id="bib_DBLP:conf/vmcai/Bradley11" class="bibtex noshow">
1256<td colspan="7"><b>BibTeX</b>:
1257<pre>
1258@inproceedings{DBLP:conf/vmcai/Bradley11,
1259  author = {Aaron R. Bradley},
1260  title = {SAT-Based Model Checking without Unrolling},
1261  booktitle = {VMCAI},
1262  publisher = {Springer},
1263  year = {2011},
1264  volume = {6538},
1265  pages = {70-87}
1266}
1267</pre></td>
1268</tr>
1269<tr id="Brady:EECS-2008-136" class="entry">
1270        <td>Brady, B., Bryant, R. &amp; Seshia, S.A.&nbsp;</td>
1271        <td>Abstracting RTL Designs to the Term Level <p class="infolinks">[<a href="javascript:toggleInfo('Brady:EECS-2008-136','abstract')">Abstract</a>] [<a href="javascript:toggleInfo('Brady:EECS-2008-136','bibtex')">BibTeX</a>]</p></td>
1272        <td>2008</td>
1273        <td>(UCB/EECS-2008-136)&nbsp;</td>
1274        <td>techreport</td>
1275        <td><a href="http://www.eecs.berkeley.edu/Pubs/TechRpts/2008/EECS-2008-136.html">URL</a>&nbsp;</td>
1276        <td><div class="bibtex_pdf">
1277            <a href="docs/abstractingRTLtoTermLevel.pdf">PDF</a>
1278          </div>&nbsp;</td>
1279</tr>
1280<tr id="abs_Brady:EECS-2008-136" class="abstract noshow">
1281        <td colspan="7"><b>Abstract</b>: Term-level verification is a formal technique that seeks to verify RTL hardware descriptions by abstracting away details of data representations and operations. The key to making term-level verification automatic and efficient is in deciding what to abstract. We investigate this question in this paper and propose a solution based on the use of type qualifiers. First, we demonstrate through case studies that only selective term-level abstraction can be very effective in reducing the run-time of formal tools while still retaining precision of analysis. Second, the term-level abstraction process can be guided using lightweight type qualifiers. We present an annotation language and type inference scheme that is applied to the formal verification of the Verilog implementation of a chip multiprocessor router. Experimental results indicate type-based selective term-level abstraction is effective at scaling up verification with minimal designer guidance.</td>
1282</tr>
1283<tr id="bib_Brady:EECS-2008-136" class="bibtex noshow">
1284<td colspan="7"><b>BibTeX</b>:
1285<pre>
1286@techreport{Brady:EECS-2008-136,
1287  author = {Brady, Bryan and Bryant, Randal and Seshia, Sanjit A.},
1288  title = {Abstracting RTL Designs to the Term Level},
1289  year = {2008},
1290  number = {UCB/EECS-2008-136},
1291  url = {http://www.eecs.berkeley.edu/Pubs/TechRpts/2008/EECS-2008-136.html}
1292}
1293</pre></td>
1294</tr>
1295<tr id="braunstein_phd07" class="entry">
1296        <td>Braunstein, C.&nbsp;</td>
1297        <td>"Conception Incrémentale, Vérification de Composants Matériels et Méthode d'abstraction pour la Vérification de SystÚmes Intégrés sur Puce" <p class="infolinks">[<a href="javascript:toggleInfo('braunstein_phd07','bibtex')">BibTeX</a>]</p></td>
1298        <td>2007</td>
1299        <td><i>School</i>: Universitée Pierre et Marie Curie (Paris 6)&nbsp;</td>
1300        <td>phdthesis</td>
1301        <td>&nbsp;</td>
1302        <td>&nbsp;</td>
1303</tr>
1304<tr id="bib_braunstein_phd07" class="bibtex noshow">
1305<td colspan="7"><b>BibTeX</b>:
1306<pre>
1307@phdthesis{braunstein_phd07,
1308  author = {C.~Braunstein},
1309  title = {"Conception Incrémentale, Vérification de Composants Matériels et Méthode d'abstraction pour la Vérification de SystÚmes Intégrés sur Puce"},
1310  school = {Universitée Pierre et Marie Curie (Paris 6)},
1311  year = {2007}
1312}
1313</pre></td>
1314</tr>
1315<tr id="cecile03dea" class="entry">
1316        <td>Braunstein, C.&nbsp;</td>
1317        <td>Transformation de propri&eacute;t&eacute;s CTL lors d'une m&eacute;thode de conception incr&eacute;mentale des wrappers VCI/PI <p class="infolinks">[<a href="javascript:toggleInfo('cecile03dea','bibtex')">BibTeX</a>]</p></td>
1318        <td>2003</td>
1319        <td>&nbsp;</td>
1320        <td>techreport</td>
1321        <td>&nbsp;</td>
1322        <td>&nbsp;</td>
1323</tr>
1324<tr id="bib_cecile03dea" class="bibtex noshow">
1325<td colspan="7"><b>BibTeX</b>:
1326<pre>
1327@techreport{cecile03dea,
1328  author = {C.~Braunstein},
1329  title = {Transformation de propri&eacute;t&eacute;s CTL lors d'une m&eacute;thode de conception incr&eacute;mentale des wrappers VCI/PI},
1330  year = {2003}
1331}
1332</pre></td>
1333</tr>
1334<tr id="braunstein06sttt" class="entry">
1335        <td>Braunstein, C. &amp; Encrenaz, E.&nbsp;</td>
1336        <td>CTL-property Transformations along an Incremental Design Process <p class="infolinks">[<a href="javascript:toggleInfo('braunstein06sttt','bibtex')">BibTeX</a>]</p></td>
1337        <td>2007</td>
1338        <td>International Journal on Software Tools for Technology Transfer (STTT)<br/>Vol. 9(1), pp. 77-88&nbsp;</td>
1339        <td>article</td>
1340        <td>&nbsp;</td>
1341        <td>&nbsp;</td>
1342</tr>
1343<tr id="bib_braunstein06sttt" class="bibtex noshow">
1344<td colspan="7"><b>BibTeX</b>:
1345<pre>
1346@article{braunstein06sttt,
1347  author = {C.~Braunstein and E.~Encrenaz},
1348  title = {CTL-property Transformations along an Incremental Design Process},
1349  journal = {International Journal on Software Tools for Technology Transfer (STTT)},
1350  publisher = {Springer},
1351  year = {2007},
1352  volume = {9},
1353  number = {1},
1354  pages = {77--88},
1355  note = {A long version including the proof is available at www-asim.lip6.fr/~cecile}
1356}
1357</pre></td>
1358</tr>
1359<tr id="braunstein07acsd" class="entry">
1360        <td>Braunstein, C. &amp; Encrenaz, E.&nbsp;</td>
1361        <td>Using CTL formulae as Component Abstraction in a Design and Verification Flow <p class="infolinks">[<a href="javascript:toggleInfo('braunstein07acsd','bibtex')">BibTeX</a>]</p></td>
1362        <td>2007</td>
1363        <td>ACSD'07: Proceedings of the 7th International Conference on Application of Concurrency to System Design&nbsp;</td>
1364        <td>inproceedings</td>
1365        <td>&nbsp;</td>
1366        <td>&nbsp;</td>
1367</tr>
1368<tr id="bib_braunstein07acsd" class="bibtex noshow">
1369<td colspan="7"><b>BibTeX</b>:
1370<pre>
1371@inproceedings{braunstein07acsd,
1372  author = {C.~Braunstein and E.~Encrenaz},
1373  title = {Using CTL formulae as Component Abstraction in a Design and Verification Flow},
1374  booktitle = {ACSD'07: Proceedings of the 7th International Conference on Application of Concurrency to System Design},
1375  year = {2007},
1376  note = {accepted}
1377}
1378</pre></td>
1379</tr>
1380<tr id="braunstein06lpar" class="entry">
1381        <td>Braunstein, C. &amp; Encrenaz, E.&nbsp;</td>
1382        <td>A Further Step in the Incremental Design Process: Incorporation of an Increment Specification <p class="infolinks">[<a href="javascript:toggleInfo('braunstein06lpar','bibtex')">BibTeX</a>]</p></td>
1383        <td>2006</td>
1384        <td>LPAR'06: Proceeding of the 13th International Conference on Logic for Programming, Artificial Intelligence, and Reasoning&nbsp;</td>
1385        <td>inproceedings</td>
1386        <td>&nbsp;</td>
1387        <td>&nbsp;</td>
1388</tr>
1389<tr id="bib_braunstein06lpar" class="bibtex noshow">
1390<td colspan="7"><b>BibTeX</b>:
1391<pre>
1392@inproceedings{braunstein06lpar,
1393  author = {C.~Braunstein and E.~Encrenaz},
1394  title = {A Further Step in the Incremental Design Process: Incorporation of an Increment Specification},
1395  booktitle = {LPAR'06: Proceeding of the 13th International Conference on Logic for Programming, Artificial Intelligence, and Reasoning},
1396  year = {2006},
1397  note = {it short paper, proceedings online http://www.lix.polytechnique.fr/~hermann/LPAR2006/}
1398}
1399</pre></td>
1400</tr>
1401<tr id="Braunstein_Encrenaz_RR_LIP6_07_2006" class="entry">
1402        <td>Braunstein, C. &amp; Encrenaz, E.&nbsp;</td>
1403        <td>Using CTL formulae as component abstraction <p class="infolinks">[<a href="javascript:toggleInfo('Braunstein_Encrenaz_RR_LIP6_07_2006','bibtex')">BibTeX</a>]</p></td>
1404        <td>2006</td>
1405        <td>&nbsp;</td>
1406        <td>techreport</td>
1407        <td>&nbsp;</td>
1408        <td>&nbsp;</td>
1409</tr>
1410<tr id="bib_Braunstein_Encrenaz_RR_LIP6_07_2006" class="bibtex noshow">
1411<td colspan="7"><b>BibTeX</b>:
1412<pre>
1413@techreport{Braunstein_Encrenaz_RR_LIP6_07_2006,
1414  author = {C.~Braunstein and E.~Encrenaz},
1415  title = {Using CTL formulae as component abstraction},
1416  year = {2006}
1417}
1418</pre></td>
1419</tr>
1420<tr id="pipeline06" class="entry">
1421        <td>Braunstein, C. &amp; Encrenaz, E.&nbsp;</td>
1422        <td>Formalizing the Incremental Design and Verification Process of a Pipelined Protocol Converter <p class="infolinks">[<a href="javascript:toggleInfo('pipeline06','bibtex')">BibTeX</a>]</p></td>
1423        <td>2006</td>
1424        <td>RSP '06: Proceedings of the Seventeenth IEEE International Workshop on Rapid System Prototyping (RSP'06), pp. 103-109&nbsp;</td>
1425        <td>inproceedings</td>
1426        <td><a href="http://dx.doi.org/10.1109/RSP.2006.19">DOI</a> &nbsp;</td>
1427        <td>&nbsp;</td>
1428</tr>
1429<tr id="bib_pipeline06" class="bibtex noshow">
1430<td colspan="7"><b>BibTeX</b>:
1431<pre>
1432@inproceedings{pipeline06,
1433  author = {C.~Braunstein and E.~Encrenaz},
1434  title = {Formalizing the Incremental Design and Verification Process of a Pipelined Protocol Converter},
1435  booktitle = {RSP '06: Proceedings of the Seventeenth IEEE International Workshop on Rapid System Prototyping (RSP'06)},
1436  publisher = {IEEE Computer Society},
1437  year = {2006},
1438  pages = {103--109},
1439  doi = {http://dx.doi.org/10.1109/RSP.2006.19}
1440}
1441</pre></td>
1442</tr>
1443<tr id="avocs_incr" class="entry">
1444        <td>Braunstein, C. &amp; Encrenaz, E.&nbsp;</td>
1445        <td>CTL-Property Transformations along an Incremental Design Process <p class="infolinks">[<a href="javascript:toggleInfo('avocs_incr','bibtex')">BibTeX</a>]</p></td>
1446        <td>2005</td>
1447        <td>Electronic Notes in Theoretical Computer Science<br/>Vol. 128(6), pp. 263-278&nbsp;</td>
1448        <td>article</td>
1449        <td>&nbsp;</td>
1450        <td><div class="bibtex_pdf">
1451            <a href="docs/braunstein_avocs_o4.pdf">PDF</a>
1452          </div>&nbsp;</td>
1453</tr>
1454<tr id="bib_avocs_incr" class="bibtex noshow">
1455<td colspan="7"><b>BibTeX</b>:
1456<pre>
1457@article{avocs_incr,
1458  author = {C.~Braunstein and E.~Encrenaz},
1459  title = {CTL-Property Transformations along an Incremental Design Process},
1460  journal = {Electronic Notes in Theoretical Computer Science},
1461  publisher = {Elsevier},
1462  year = {2005},
1463  volume = {128},
1464  number = {6},
1465  pages = {263--278}
1466}
1467</pre></td>
1468</tr>
1469<tr id="browneclarkegrum88" class="entry">
1470        <td>Browne, M., Clarke, E. &amp; Grumberg, O.&nbsp;</td>
1471        <td>Characterizing Finite Kripke Structures in Propositional Temporal Logic <p class="infolinks">[<a href="javascript:toggleInfo('browneclarkegrum88','bibtex')">BibTeX</a>]</p></td>
1472        <td>1988</td>
1473        <td>Theoritical Computer Science<br/>Vol. 59(1-2), pp. 115-131&nbsp;</td>
1474        <td>article</td>
1475        <td><a href="http://dx.doi.org/10.1016/0304-3975(88)90098-9">DOI</a> &nbsp;</td>
1476        <td>&nbsp;</td>
1477</tr>
1478<tr id="bib_browneclarkegrum88" class="bibtex noshow">
1479<td colspan="7"><b>BibTeX</b>:
1480<pre>
1481@article{browneclarkegrum88,
1482  author = {M.C.~Browne and E.M.~Clarke and O.~Grumberg},
1483  title = {Characterizing Finite Kripke Structures in Propositional Temporal Logic},
1484  journal = {Theoritical Computer Science},
1485  publisher = {Elsevier Science Publishers Ltd.},
1486  year = {1988},
1487  volume = {59},
1488  number = {1-2},
1489  pages = {115--131},
1490  doi = {http://dx.doi.org/10.1016/0304-3975(88)90098-9}
1491}
1492</pre></td>
1493</tr>
1494<tr id="bruns00generalized" class="entry">
1495        <td>Bruns, G. &amp; Godefroid, P.&nbsp;Nicolas Halbwachs and Doron Peled (Ed.)</td>
1496        <td>Generalized Model Checking: Reasoning about Partial State Spaces <p class="infolinks">[<a href="javascript:toggleInfo('bruns00generalized','bibtex')">BibTeX</a>]</p></td>
1497        <td>2000</td>
1498        <td><br/>Vol. 1877CONCUR'2000: Proceedings of the 11th International Conference on Concurrency Theory, pp. 168-182&nbsp;</td>
1499        <td>inproceedings</td>
1500        <td>&nbsp;</td>
1501        <td><div class="bibtex_pdf">
1502            <a href="docs/godefroid00.pdf">PDF</a>
1503          </div>&nbsp;</td>
1504</tr>
1505<tr id="bib_bruns00generalized" class="bibtex noshow">
1506<td colspan="7"><b>BibTeX</b>:
1507<pre>
1508@inproceedings{bruns00generalized,
1509  author = {G.~Bruns and P.~Godefroid},
1510  title = {Generalized Model Checking: Reasoning about Partial State Spaces},
1511  booktitle = {CONCUR'2000: Proceedings of the 11th International Conference on Concurrency Theory},
1512  publisher = {Springer},
1513  year = {2000},
1514  volume = {1877},
1515  pages = {168-182}
1516}
1517</pre></td>
1518</tr>
1519<tr id="burns99partial" class="entry">
1520        <td>Bruns, G. &amp; Godefroid, P.&nbsp;Nicolas Halbwachs and Doron Peled (Ed.)</td>
1521        <td>Model Checking Partial State Spaces with 3-Valued Temporal Logics <p class="infolinks">[<a href="javascript:toggleInfo('burns99partial','bibtex')">BibTeX</a>]</p></td>
1522        <td>1999</td>
1523        <td><br/>Vol. 1633CAV'99: Proceedings of the 11th conference on Computer Aided Verification, pp. 274-287&nbsp;</td>
1524        <td>inproceedings</td>
1525        <td>&nbsp;</td>
1526        <td><div class="bibtex_pdf">
1527            <a href="docs/burns99partial.pdf">PDF</a>
1528          </div>&nbsp;</td>
1529</tr>
1530<tr id="bib_burns99partial" class="bibtex noshow">
1531<td colspan="7"><b>BibTeX</b>:
1532<pre>
1533@inproceedings{burns99partial,
1534  author = {G.~Bruns and P.~Godefroid},
1535  title = {Model Checking Partial State Spaces with 3-Valued Temporal Logics},
1536  booktitle = {CAV'99: Proceedings of the 11th conference on Computer Aided Verification},
1537  publisher = {Springer},
1538  year = {1999},
1539  volume = {1633},
1540  pages = {274-287}
1541}
1542</pre></td>
1543</tr>
1544<tr id="Bryant86" class="entry">
1545        <td>Bryant, R.&nbsp;</td>
1546        <td>Graph-Based Algorithms for Boolean Function Manipulation <p class="infolinks">[<a href="javascript:toggleInfo('Bryant86','bibtex')">BibTeX</a>]</p></td>
1547        <td>1986</td>
1548        <td>IEEE Transactions on Computers<br/>Vol. 35(8), pp. 677-691&nbsp;</td>
1549        <td>article</td>
1550        <td>&nbsp;</td>
1551        <td>&nbsp;</td>
1552</tr>
1553<tr id="bib_Bryant86" class="bibtex noshow">
1554<td colspan="7"><b>BibTeX</b>:
1555<pre>
1556@article{Bryant86,
1557  author = {R.E.~Bryant},
1558  title = {Graph-Based Algorithms for Boolean Function Manipulation},
1559  journal = {IEEE Transactions on Computers},
1560  year = {1986},
1561  volume = {35},
1562  number = {8},
1563  pages = {677-691}
1564}
1565</pre></td>
1566</tr>
1567<tr id="bunker:idpt02" class="entry">
1568        <td>Bunker, A. &amp; Gopalakrishnan, G.&nbsp;H. Ehrig and B. J. Kr&auml;mer and A. Ertas (Ed.)</td>
1569        <td>Verifying a VCI Bus Interface Model Using an LSC-based Specification <p class="infolinks">[<a href="javascript:toggleInfo('bunker:idpt02','bibtex')">BibTeX</a>]</p></td>
1570        <td>2002</td>
1571        <td>Proceedings of the Sixth Biennial World Conference on Integrated Design and Process Technology, pp. 48&nbsp;</td>
1572        <td>inproceedings</td>
1573        <td><a href="http://www.engineering.usu.edu/ece/faculty/bunker/pubs/idpt02.pdf">URL</a>&nbsp;</td>
1574        <td>&nbsp;</td>
1575</tr>
1576<tr id="bib_bunker:idpt02" class="bibtex noshow">
1577<td colspan="7"><b>BibTeX</b>:
1578<pre>
1579@inproceedings{bunker:idpt02,
1580  author = {A.~Bunker and G.~Gopalakrishnan},
1581  title = {Verifying a VCI Bus Interface Model Using an LSC-based Specification},
1582  booktitle = {Proceedings of the Sixth Biennial World Conference on Integrated Design and Process Technology},
1583  year = {2002},
1584  pages = {48},
1585  url = {http://www.engineering.usu.edu/ece/faculty/bunker/pubs/idpt02.pdf}
1586}
1587</pre></td>
1588</tr>
1589<tr id="macmillan" class="entry">
1590        <td>Burch, J., Clarke, E., McMillan, K., Dill, D. &amp; Hwang, L.&nbsp;</td>
1591        <td>Symbolic Model Checking: $10^20$ States and Beyond <p class="infolinks">[<a href="javascript:toggleInfo('macmillan','bibtex')">BibTeX</a>]</p></td>
1592        <td>1992</td>
1593        <td>Information and Computation <br/>Vol. 98(2), pp. 142-170&nbsp;</td>
1594        <td>article</td>
1595        <td>&nbsp;</td>
1596        <td>&nbsp;</td>
1597</tr>
1598<tr id="bib_macmillan" class="bibtex noshow">
1599<td colspan="7"><b>BibTeX</b>:
1600<pre>
1601@article{macmillan,
1602  author = {J.R.~Burch and E.M.~Clarke and K.L.~McMillan and D.L.~Dill and L.J.~Hwang},
1603  title = {Symbolic Model Checking: $10^20$ States and Beyond},
1604  journal = {Information and Computation },
1605  publisher = {Academic Press, Inc.},
1606  year = {1992},
1607  volume = {98},
1608  number = {2},
1609  pages = {142--170},
1610  note = {Special issue for best papers from LICS'90}
1611}
1612</pre></td>
1613</tr>
1614<tr id="burch94automatic" class="entry">
1615        <td>Burch, J. &amp; Dill, D.&nbsp;D.L. Dill (Ed.)</td>
1616        <td>Automatic Verification of Pipelined Microprocessors Control <p class="infolinks">[<a href="javascript:toggleInfo('burch94automatic','bibtex')">BibTeX</a>]</p></td>
1617        <td>1994</td>
1618        <td><br/>Vol. LNCS 818Proceedings of the sixth International Conference on Computer-Aided Verification CAV'94, pp. 68-80&nbsp;</td>
1619        <td>inproceedings</td>
1620        <td><a href="citeseer.ist.psu.edu/burch94automatic.html">URL</a>&nbsp;</td>
1621        <td>&nbsp;</td>
1622</tr>
1623<tr id="bib_burch94automatic" class="bibtex noshow">
1624<td colspan="7"><b>BibTeX</b>:
1625<pre>
1626@inproceedings{burch94automatic,
1627  author = {J.R.~Burch and D.L.~Dill},
1628  title = {Automatic Verification of Pipelined Microprocessors Control},
1629  booktitle = {Proceedings of the sixth International Conference on Computer-Aided Verification CAV'94},
1630  publisher = {Springer-Verlag},
1631  year = {1994},
1632  volume = {LNCS 818},
1633  pages = {68--80},
1634  url = {citeseer.ist.psu.edu/burch94automatic.html}
1635}
1636</pre></td>
1637</tr>
1638<tr id="bryant82" class="entry">
1639        <td>Burch, J. &amp; Dill, D.&nbsp;</td>
1640        <td>Graph-Based Algorithms for Boolean Function Manipulation <p class="infolinks">[<a href="javascript:toggleInfo('bryant82','abstract')">Abstract</a>] [<a href="javascript:toggleInfo('bryant82','bibtex')">BibTeX</a>]</p></td>
1641        <td>1982</td>
1642        <td>IEEE Transactions on Computers<br/>Vol. 35(8), pp. 677-691&nbsp;</td>
1643        <td>article</td>
1644        <td>&nbsp;</td>
1645        <td>&nbsp;</td>
1646</tr>
1647<tr id="abs_bryant82" class="abstract noshow">
1648        <td colspan="7"><b>Abstract</b>: Available</td>
1649</tr>
1650<tr id="bib_bryant82" class="bibtex noshow">
1651<td colspan="7"><b>BibTeX</b>:
1652<pre>
1653@article{bryant82,
1654  author = {J.R.~Burch and D.L.~Dill},
1655  title = {Graph-Based Algorithms for Boolean Function Manipulation},
1656  journal = {IEEE Transactions on Computers},
1657  year = {1982},
1658  volume = {35},
1659  number = {8},
1660  pages = {677--691}
1661}
1662</pre></td>
1663</tr>
1664<tr id="Buttner05isformal" class="entry">
1665        <td>B&uuml;ttner, W.&nbsp;Wolfgang J. Paul Dominique Borrione (Ed.)</td>
1666        <td>Is Formal Verification Bound to Remain a Junior Partner of Simulation? <p class="infolinks">[<a href="javascript:toggleInfo('Buttner05isformal','bibtex')">BibTeX</a>]</p></td>
1667        <td>2005</td>
1668        <td><br/>Vol. 3725CHARME'2005: Proceedings of the Correct Hardware Design and Verification Methods, 13th IFIP WG 10.5 Advanced Research Working Conference, pp. 1&nbsp;</td>
1669        <td>inproceedings</td>
1670        <td>&nbsp;</td>
1671        <td>&nbsp;</td>
1672</tr>
1673<tr id="bib_Buttner05isformal" class="bibtex noshow">
1674<td colspan="7"><b>BibTeX</b>:
1675<pre>
1676@inproceedings{Buttner05isformal,
1677  author = {W. B&uuml;ttner},
1678  title = {Is Formal Verification Bound to Remain a Junior Partner of Simulation?},
1679  booktitle = {CHARME'2005: Proceedings of the Correct Hardware Design and Verification Methods, 13th IFIP WG 10.5 Advanced Research Working Conference},
1680  publisher = {Springer},
1681  year = {2005},
1682  volume = {3725},
1683  pages = {1}
1684}
1685</pre></td>
1686</tr>
1687<tr id="Cabodi09Speeding" class="entry">
1688        <td>Cabodi, G., Camurati, P., Garcia, L., Murciano, M., Nocco, S. &amp; Quer, S.&nbsp;</td>
1689        <td>Speeding up Model Checking by Exploiting Explicit and Hidden Verification Constraints <p class="infolinks">[<a href="javascript:toggleInfo('Cabodi09Speeding','bibtex')">BibTeX</a>]</p></td>
1690        <td>2009</td>
1691        <td>DATE '09: Proceedings of the conference on Design, Automation and Test in Europe, pp. 1686-1691&nbsp;</td>
1692        <td>inproceedings</td>
1693        <td>&nbsp;</td>
1694        <td><div class="bibtex_pdf">
1695            <a href="docs/Speeding up MC by exploiting Explicit09.PDF">PDF</a>
1696          </div>&nbsp;</td>
1697</tr>
1698<tr id="bib_Cabodi09Speeding" class="bibtex noshow">
1699<td colspan="7"><b>BibTeX</b>:
1700<pre>
1701@inproceedings{Cabodi09Speeding,
1702  author = {G. Cabodi and P. Camurati and L. Garcia and M. Murciano and S. Nocco and S. Quer},
1703  title = {Speeding up Model Checking by Exploiting Explicit and Hidden Verification Constraints},
1704  booktitle = {DATE '09: Proceedings of the conference on Design, Automation and Test in Europe},
1705  year = {2009},
1706  pages = {1686-1691}
1707}
1708</pre></td>
1709</tr>
1710<tr id="Cansell2001AbstractionandRefinementofFeatures" class="entry">
1711        <td>Cansell, D. &amp; M&eacute;ry, D.&nbsp;S. Gilmore and M. Ryan (Ed.)</td>
1712        <td>Abstraction and Refinement of Features <p class="infolinks">[<a href="javascript:toggleInfo('Cansell2001AbstractionandRefinementofFeatures','abstract')">Abstract</a>] [<a href="javascript:toggleInfo('Cansell2001AbstractionandRefinementofFeatures','bibtex')">BibTeX</a>]</p></td>
1713        <td>2001</td>
1714        <td>Language Constructs for Designing Features, pp. 65-84&nbsp;</td>
1715        <td>incollection</td>
1716        <td>&nbsp;</td>
1717        <td>&nbsp;</td>
1718</tr>
1719<tr id="abs_Cansell2001AbstractionandRefinementofFeatures" class="abstract noshow">
1720        <td colspan="7"><b>Abstract</b>: The composition of services and features often leads to unwanted situations, because it is a non-monotonic operation over services and features. When a new service is added to an existing system, conditions have to be checked to ensure that the resulting system satisfies a list of required properties. Following the system approach of Abrial, we develop services and features in an incremental way and use refinement to model the composition of services and features. Proof obligations state the preservation or the non-preservation of properties, namely invariant or more generally safety properties. The method helps us in understanding when a service is interfering with another, and allows us to give multiple views of each service according to the level of its refinement. Finally, we validate our method with the Atelier B tool.</td>
1721</tr>
1722<tr id="bib_Cansell2001AbstractionandRefinementofFeatures" class="bibtex noshow">
1723<td colspan="7"><b>BibTeX</b>:
1724<pre>
1725@incollection{Cansell2001AbstractionandRefinementofFeatures,
1726  author = {D.~Cansell and D.~M&eacute;ry},
1727  title = {Abstraction and Refinement of Features},
1728  booktitle = {Language Constructs for Designing Features},
1729  publisher = {Springer-Verlag},
1730  year = {2001},
1731  pages = {65--84}
1732}
1733</pre></td>
1734</tr>
1735<tr id="cassez-proving" class="entry">
1736        <td>Cassez, F., Ryan, M. &amp; Schobbens, P.-Y.&nbsp;S. Gilmore and M. Ryan (Ed.)</td>
1737        <td>Proving Feature Non-Interaction with Alternating-Time Temporal Logic <p class="infolinks">[<a href="javascript:toggleInfo('cassez-proving','bibtex')">BibTeX</a>]</p></td>
1738        <td>2001</td>
1739        <td>Language Constructs for Describing Features, pp. 85-104&nbsp;</td>
1740        <td>incollection</td>
1741        <td>&nbsp;</td>
1742        <td>&nbsp;</td>
1743</tr>
1744<tr id="bib_cassez-proving" class="bibtex noshow">
1745<td colspan="7"><b>BibTeX</b>:
1746<pre>
1747@incollection{cassez-proving,
1748  author = {F.~Cassez and M.~Ryan and P-Y.~Schobbens},
1749  title = {Proving Feature Non-Interaction with Alternating-Time Temporal Logic},
1750  booktitle = {Language Constructs for Describing Features},
1751  publisher = {Springer Verlag},
1752  year = {2001},
1753  pages = {85--104}
1754}
1755</pre></td>
1756</tr>
1757<tr id="DBLP:conf/fmcad/ChauhanCKSVW02" class="entry">
1758        <td>Chauhan, P., Clarke, E., Kukula, J., Sapra, S., Veith, H. &amp; Wang, D.&nbsp;Mark Aagaard and John W. O'Leary (Ed.)</td>
1759        <td>Automated Abstraction Refinement for Model Checking Large State Spaces Using SAT Based Conflict Analysis <p class="infolinks">[<a href="javascript:toggleInfo('DBLP:conf/fmcad/ChauhanCKSVW02','bibtex')">BibTeX</a>]</p></td>
1760        <td>2002</td>
1761        <td><br/>Vol. 2517FMCAD'02: Proceedings of the 4th International Conference on Formal Methods in Computer-Aided Design , pp. 33-51&nbsp;</td>
1762        <td>inproceedings</td>
1763        <td>&nbsp;</td>
1764        <td><div class="bibtex_pdf">
1765            <a href="docs/AutomatedAbstractionRefinment02Chauchan.pdf">PDF</a>
1766          </div>&nbsp;</td>
1767</tr>
1768<tr id="bib_DBLP:conf/fmcad/ChauhanCKSVW02" class="bibtex noshow">
1769<td colspan="7"><b>BibTeX</b>:
1770<pre>
1771@inproceedings{DBLP:conf/fmcad/ChauhanCKSVW02,
1772  author = {P.~Chauhan and E.M.~Clarke and J.H.~Kukula and S.~Sapra and H.~Veith and D.~Wang},
1773  title = {Automated Abstraction Refinement for Model Checking Large State Spaces Using SAT Based Conflict Analysis},
1774  booktitle = {FMCAD'02: Proceedings of the 4th International Conference on Formal Methods in Computer-Aided Design },
1775  publisher = {Springer},
1776  year = {2002},
1777  volume = {2517},
1778  pages = {33-51}
1779}
1780</pre></td>
1781</tr>
1782<tr id="chechik03multi" class="entry">
1783        <td>Chechik, M., Devereux, B., Easterbrook, S.M. &amp; Gurfinkel, A.&nbsp;</td>
1784        <td>Multi-Valued Symbolic Model-Checking <p class="infolinks">[<a href="javascript:toggleInfo('chechik03multi','bibtex')">BibTeX</a>]</p></td>
1785        <td>2003</td>
1786        <td>ACM Transactions on Software Engineering and Methodology<br/>Vol. 12(4), pp. 371-408&nbsp;</td>
1787        <td>article</td>
1788        <td>&nbsp;</td>
1789        <td><div class="bibtex_pdf">
1790            <a href="docs/chechik03a.pdf">PDF</a>
1791          </div>&nbsp;</td>
1792</tr>
1793<tr id="bib_chechik03multi" class="bibtex noshow">
1794<td colspan="7"><b>BibTeX</b>:
1795<pre>
1796@article{chechik03multi,
1797  author = {M.~Chechik and B.~Devereux and S.~M.~Easterbrook and A.~Gurfinkel},
1798  title = {Multi-Valued Symbolic Model-Checking},
1799  journal = {ACM Transactions on Software Engineering and Methodology},
1800  year = {2003},
1801  volume = {12},
1802  number = {4},
1803  pages = {371-408}
1804}
1805</pre></td>
1806</tr>
1807<tr id="chechik05framework" class="entry">
1808        <td>Chechik, M. &amp; Gurfinkel, A.&nbsp;Maura Cerioli (Ed.)</td>
1809        <td>A Framework for Counterexample Generation and Exploration. <p class="infolinks">[<a href="javascript:toggleInfo('chechik05framework','bibtex')">BibTeX</a>]</p></td>
1810        <td>2005</td>
1811        <td><br/>Vol. 3442FASE, pp. 220-236&nbsp;</td>
1812        <td>inproceedings</td>
1813        <td>&nbsp;</td>
1814        <td><div class="bibtex_pdf">
1815            <a href="docs/chechik05a.pdf">PDF</a>
1816          </div>&nbsp;</td>
1817</tr>
1818<tr id="bib_chechik05framework" class="bibtex noshow">
1819<td colspan="7"><b>BibTeX</b>:
1820<pre>
1821@inproceedings{chechik05framework,
1822  author = {Marsha Chechik and Arie Gurfinkel},
1823  title = {A Framework for Counterexample Generation and Exploration.},
1824  booktitle = {FASE},
1825  publisher = {Springer},
1826  year = {2005},
1827  volume = {3442},
1828  pages = {220-236}
1829}
1830</pre></td>
1831</tr>
1832<tr id="ChocklerKV01" class="entry">
1833        <td>Chockler, H., Kupferman, O. &amp; Vardi, M.&nbsp;Tiziana Margaria and Wang Yi (Ed.)</td>
1834        <td>Coverage Metrics for Temporal Logic Model Checking <p class="infolinks">[<a href="javascript:toggleInfo('ChocklerKV01','bibtex')">BibTeX</a>]</p></td>
1835        <td>2001</td>
1836        <td><br/>Vol. 2031TACAS'01: 7th International Conference on Tools and Algorithms for the Construction and Analysis of Systems, pp. 528-542&nbsp;</td>
1837        <td>inproceedings</td>
1838        <td>&nbsp;</td>
1839        <td><div class="bibtex_pdf">
1840            <a href="docs/Coverage_Metric_for_temporal_MC01.pdf">PDF</a>
1841          </div>&nbsp;</td>
1842</tr>
1843<tr id="bib_ChocklerKV01" class="bibtex noshow">
1844<td colspan="7"><b>BibTeX</b>:
1845<pre>
1846@inproceedings{ChocklerKV01,
1847  author = {H.~Chockler and O.~Kupferman and M.Y.~Vardi},
1848  title = {Coverage Metrics for Temporal Logic Model Checking},
1849  booktitle = {TACAS'01: 7th International Conference on Tools and Algorithms for the Construction and Analysis of Systems},
1850  publisher = {Springer},
1851  year = {2001},
1852  volume = {2031},
1853  pages = {528-542}
1854}
1855</pre></td>
1856</tr>
1857<tr id="846816" class="entry">
1858        <td>Choi, H., Yim, M.-K., Lee, J.-Y., Yun, B.-W. &amp; Lee, Y.-T.&nbsp;</td>
1859        <td>Formal Verification of an Industrial System-on-a-Chip <p class="infolinks">[<a href="javascript:toggleInfo('846816','bibtex')">BibTeX</a>]</p></td>
1860        <td>2000</td>
1861        <td>ICCD '00: Proceedings of the 2000 IEEE International Conference on Computer Design, pp. 453&nbsp;</td>
1862        <td>inproceedings</td>
1863        <td>&nbsp;</td>
1864        <td>&nbsp;</td>
1865</tr>
1866<tr id="bib_846816" class="bibtex noshow">
1867<td colspan="7"><b>BibTeX</b>:
1868<pre>
1869@inproceedings{846816,
1870  author = {Hoon Choi and Myung-Kyoon Yim and Jae-Young Lee and Byeong-Whee Yun and Yun-Tae Lee},
1871  title = {Formal Verification of an Industrial System-on-a-Chip},
1872  booktitle = {ICCD '00: Proceedings of the 2000 IEEE International Conference on Computer Design},
1873  publisher = {IEEE Computer Society},
1874  year = {2000},
1875  pages = {453}
1876}
1877</pre></td>
1878</tr>
1879<tr id="CLS00" class="entry">
1880        <td>Ciardo, G., L&uuml;ttgen, G. &amp; Siminiceanu, R.&nbsp;</td>
1881        <td>Efficient Symbolic State-Space Construction for Asynchronous Systems <p class="infolinks">[<a href="javascript:toggleInfo('CLS00','bibtex')">BibTeX</a>]</p></td>
1882        <td>2000</td>
1883        <td><br/>Vol. 1825Proc. of ICATPN'2000, pp. 103-122&nbsp;</td>
1884        <td>inproceedings</td>
1885        <td>&nbsp;</td>
1886        <td>&nbsp;</td>
1887</tr>
1888<tr id="bib_CLS00" class="bibtex noshow">
1889<td colspan="7"><b>BibTeX</b>:
1890<pre>
1891@inproceedings{CLS00,
1892  author = {G. Ciardo and G. L&uuml;ttgen and R. Siminiceanu},
1893  title = {Efficient Symbolic State-Space Construction for Asynchronous Systems},
1894  booktitle = {Proc. of ICATPN'2000},
1895  publisher = {Springer Verlag},
1896  year = {2000},
1897  volume = {1825},
1898  pages = {103--122}
1899}
1900</pre></td>
1901</tr>
1902<tr id="cimatti00nusmv" class="entry">
1903        <td>Cimatti, A., Clarke, E., Giunchiglia, F. &amp; Roveri, M.&nbsp;</td>
1904        <td>NUSMV: A New Symbolic Model Checker. <p class="infolinks">[<a href="javascript:toggleInfo('cimatti00nusmv','bibtex')">BibTeX</a>]</p></td>
1905        <td>2000</td>
1906        <td>STTT<br/>Vol. 2(4), pp. 410-425&nbsp;</td>
1907        <td>article</td>
1908        <td>&nbsp;</td>
1909        <td>&nbsp;</td>
1910</tr>
1911<tr id="bib_cimatti00nusmv" class="bibtex noshow">
1912<td colspan="7"><b>BibTeX</b>:
1913<pre>
1914@article{cimatti00nusmv,
1915  author = {A.~Cimatti and E.M.~Clarke and F.~Giunchiglia and M.~Roveri},
1916  title = {NUSMV: A New Symbolic Model Checker.},
1917  journal = {STTT},
1918  year = {2000},
1919  volume = {2},
1920  number = {4},
1921  pages = {410-425}
1922}
1923</pre></td>
1924</tr>
1925<tr id="DBLP:conf/fmcad/CimattiDJR09" class="entry">
1926        <td>Cimatti, A., Dubrovin, J., Junttila, T.A. &amp; Roveri, M.&nbsp;</td>
1927        <td>Structure-aware computation of predicate abstraction <p class="infolinks">[<a href="javascript:toggleInfo('DBLP:conf/fmcad/CimattiDJR09','bibtex')">BibTeX</a>]</p></td>
1928        <td>2009</td>
1929        <td>FMCAD, pp. 9-16&nbsp;</td>
1930        <td>inproceedings</td>
1931        <td>&nbsp;</td>
1932        <td><div class="bibtex_pdf">
1933            <a href="docs/StructureAwareComputationofPredicateAbstraction09.pdf">PDF</a>
1934          </div>&nbsp;</td>
1935</tr>
1936<tr id="bib_DBLP:conf/fmcad/CimattiDJR09" class="bibtex noshow">
1937<td colspan="7"><b>BibTeX</b>:
1938<pre>
1939@inproceedings{DBLP:conf/fmcad/CimattiDJR09,
1940  author = {Alessandro Cimatti and Jori Dubrovin and Tommi A. Junttila and Marco Roveri},
1941  title = {Structure-aware computation of predicate abstraction},
1942  booktitle = {FMCAD},
1943  publisher = {IEEE},
1944  year = {2009},
1945  pages = {9-16}
1946}
1947</pre></td>
1948</tr>
1949<tr id="DBLP:journals/tocl/CimattiGS10" class="entry">
1950        <td>Cimatti, A., Griggio, A. &amp; Sebastiani, R.&nbsp;</td>
1951        <td>Efficient generation of craig interpolants in satisfiability modulo theories <p class="infolinks">[<a href="javascript:toggleInfo('DBLP:journals/tocl/CimattiGS10','bibtex')">BibTeX</a>]</p></td>
1952        <td>2010</td>
1953        <td>ACM Trans. Comput. Log.<br/>Vol. 12(1), pp. 7&nbsp;</td>
1954        <td>article</td>
1955        <td>&nbsp;</td>
1956        <td>&nbsp;</td>
1957</tr>
1958<tr id="bib_DBLP:journals/tocl/CimattiGS10" class="bibtex noshow">
1959<td colspan="7"><b>BibTeX</b>:
1960<pre>
1961@article{DBLP:journals/tocl/CimattiGS10,
1962  author = {Alessandro Cimatti and Alberto Griggio and Roberto Sebastiani},
1963  title = {Efficient generation of craig interpolants in satisfiability modulo theories},
1964  journal = {ACM Trans. Comput. Log.},
1965  year = {2010},
1966  volume = {12},
1967  number = {1},
1968  pages = {7}
1969}
1970</pre></td>
1971</tr>
1972<tr id="DBLP:conf/sfm/ClaessenR06" class="entry">
1973        <td>Claessen, K. &amp; Roorda, J.-W.&nbsp;Marco Bernardo and Alessandro Cimatti (Ed.)</td>
1974        <td>An Introduction to Symbolic Trajectory Evaluation <p class="infolinks">[<a href="javascript:toggleInfo('DBLP:conf/sfm/ClaessenR06','bibtex')">BibTeX</a>]</p></td>
1975        <td>2006</td>
1976        <td><br/>Vol. 3965SFM, pp. 56-77&nbsp;</td>
1977        <td>inproceedings</td>
1978        <td>&nbsp;</td>
1979        <td>&nbsp;</td>
1980</tr>
1981<tr id="bib_DBLP:conf/sfm/ClaessenR06" class="bibtex noshow">
1982<td colspan="7"><b>BibTeX</b>:
1983<pre>
1984@inproceedings{DBLP:conf/sfm/ClaessenR06,
1985  author = {Koen Claessen and Jan-Willem Roorda},
1986  title = {An Introduction to Symbolic Trajectory Evaluation},
1987  booktitle = {SFM},
1988  publisher = {Springer},
1989  year = {2006},
1990  volume = {3965},
1991  pages = {56-77}
1992}
1993</pre></td>
1994</tr>
1995<tr id="clarke03cegar" class="entry">
1996        <td>Clarke, E.&nbsp;</td>
1997        <td>Counterexample-Guided Abstraction Refinement <p class="infolinks">[<a href="javascript:toggleInfo('clarke03cegar','bibtex')">BibTeX</a>]</p></td>
1998        <td>2003</td>
1999        <td>TIME, pp. 7&nbsp;</td>
2000        <td>inproceedings</td>
2001        <td>&nbsp;</td>
2002        <td><div class="bibtex_pdf">
2003            <a href="docs/ce03time.pdf">PDF</a>
2004          </div>&nbsp;</td>
2005</tr>
2006<tr id="bib_clarke03cegar" class="bibtex noshow">
2007<td colspan="7"><b>BibTeX</b>:
2008<pre>
2009@inproceedings{clarke03cegar,
2010  author = {E.M.~Clarke},
2011  title = {Counterexample-Guided Abstraction Refinement},
2012  booktitle = {TIME},
2013  publisher = {IEEE Computer Society},
2014  year = {2003},
2015  pages = {7}
2016}
2017</pre></td>
2018</tr>
2019<tr id="clarkeE81design" class="entry">
2020        <td>Clarke, E. &amp; Emerson, E.&nbsp;Dexter Kozen (Ed.)</td>
2021        <td>Design and Synthesis of Synchronization Skeletons Using Branching-Time Temporal Logic. <p class="infolinks">[<a href="javascript:toggleInfo('clarkeE81design','bibtex')">BibTeX</a>]</p></td>
2022        <td>1981</td>
2023        <td><br/>Vol. 131Logic of Programs, pp. 52-71&nbsp;</td>
2024        <td>inproceedings</td>
2025        <td>&nbsp;</td>
2026        <td>&nbsp;</td>
2027</tr>
2028<tr id="bib_clarkeE81design" class="bibtex noshow">
2029<td colspan="7"><b>BibTeX</b>:
2030<pre>
2031@inproceedings{clarkeE81design,
2032  author = {E.M.~Clarke and E.A.~Emerson},
2033  title = {Design and Synthesis of Synchronization Skeletons Using Branching-Time Temporal Logic.},
2034  booktitle = {Logic of Programs},
2035  publisher = {Springer},
2036  year = {1981},
2037  volume = {131},
2038  pages = {52-71}
2039}
2040</pre></td>
2041</tr>
2042<tr id="Clarke1986" class="entry">
2043        <td>Clarke, E., Emerson, E. &amp; Sistla, A.&nbsp;</td>
2044        <td>Automatic verification of finite-state concurrent systems using temporal logic specifications <p class="infolinks">[<a href="javascript:toggleInfo('Clarke1986','bibtex')">BibTeX</a>]</p></td>
2045        <td>1986</td>
2046        <td>ACM Transactions on Programming Languages and Systems<br/>Vol. 8(2)ICATPN'02: Proceedings of the 23rd International Conference on Applications and Theory of Petri Nets, pp. 244-263&nbsp;</td>
2047        <td>article</td>
2048        <td><a href="http://doi.acm.org/10.1145/5397.5399">DOI</a> &nbsp;</td>
2049        <td>&nbsp;</td>
2050</tr>
2051<tr id="bib_Clarke1986" class="bibtex noshow">
2052<td colspan="7"><b>BibTeX</b>:
2053<pre>
2054@article{Clarke1986,
2055  author = {E.M.~Clarke and E.A.~Emerson and A.P.~Sistla},
2056  title = {Automatic verification of finite-state concurrent systems using temporal logic specifications},
2057  booktitle = {ICATPN'02: Proceedings of the 23rd International Conference on Applications and Theory of Petri Nets},
2058  journal = {ACM Transactions on Programming Languages and Systems},
2059  publisher = {ACM Press},
2060  year = {1986},
2061  volume = {8},
2062  number = {2},
2063  pages = {244--263},
2064  doi = {http://doi.acm.org/10.1145/5397.5399}
2065}
2066</pre></td>
2067</tr>
2068<tr id="clarke94model" class="entry">
2069        <td>Clarke, E., Grumberg, O. &amp; Long, D.&nbsp;</td>
2070        <td>Model Checking and Abstraction <p class="infolinks">[<a href="javascript:toggleInfo('clarke94model','bibtex')">BibTeX</a>]</p></td>
2071        <td>1994</td>
2072        <td>ACM Transactions on Programming Languages and Systems<br/>Vol. 16(5), pp. 1512-1542&nbsp;</td>
2073        <td>article</td>
2074        <td><a href="http://doi.acm.org/10.1145/186025.186051">DOI</a> &nbsp;</td>
2075        <td>&nbsp;</td>
2076</tr>
2077<tr id="bib_clarke94model" class="bibtex noshow">
2078<td colspan="7"><b>BibTeX</b>:
2079<pre>
2080@article{clarke94model,
2081  author = {E.M.~Clarke and O.~Grumberg and D.E.~Long},
2082  title = {Model Checking and Abstraction},
2083  journal = {ACM Transactions on Programming Languages and Systems},
2084  publisher = {ACM Press},
2085  year = {1994},
2086  volume = {16},
2087  number = {5},
2088  pages = {1512--1542},
2089  doi = {http://doi.acm.org/10.1145/186025.186051}
2090}
2091</pre></td>
2092</tr>
2093<tr id="clarke99model" class="entry">
2094        <td>Clarke, E., Grumberg, O. &amp; Peled, D.&nbsp;</td>
2095        <td>Model Checking <p class="infolinks">[<a href="javascript:toggleInfo('clarke99model','bibtex')">BibTeX</a>]</p></td>
2096        <td>1999</td>
2097        <td>&nbsp;</td>
2098        <td>book</td>
2099        <td>&nbsp;</td>
2100        <td>&nbsp;</td>
2101</tr>
2102<tr id="bib_clarke99model" class="bibtex noshow">
2103<td colspan="7"><b>BibTeX</b>:
2104<pre>
2105@book{clarke99model,
2106  author = {E.M.~Clarke and O.~Grumberg and D.A.~Peled},
2107  title = {Model Checking},
2108  publisher = {The MIT Press},
2109  year = {1999}
2110}
2111</pre></td>
2112</tr>
2113<tr id="ClarkeGJLV00" class="entry">
2114        <td>Clarke, E., O.Grumberg, Jha, S., Lu, Y. &amp; Veith, H.&nbsp;E.A. Emerson and A.P. Sistla (Ed.)</td>
2115        <td>Counterexample-Guided Abstraction Refinement. <p class="infolinks">[<a href="javascript:toggleInfo('ClarkeGJLV00','bibtex')">BibTeX</a>]</p></td>
2116        <td>2000</td>
2117        <td><br/>Vol. 1855CAV'00: Proceedings of the 12th International Conference on Computer Aided Verification, pp. 154-169&nbsp;</td>
2118        <td>inproceedings</td>
2119        <td>&nbsp;</td>
2120        <td>&nbsp;</td>
2121</tr>
2122<tr id="bib_ClarkeGJLV00" class="bibtex noshow">
2123<td colspan="7"><b>BibTeX</b>:
2124<pre>
2125@inproceedings{ClarkeGJLV00,
2126  author = {E.M.~Clarke and O.Grumberg and S.~Jha and Y.~Lu and H.~Veith},
2127  title = {Counterexample-Guided Abstraction Refinement.},
2128  booktitle = {CAV'00: Proceedings of the 12th International Conference on Computer Aided Verification},
2129  publisher = {Springer},
2130  year = {2000},
2131  volume = {1855},
2132  pages = {154-169}
2133}
2134</pre></td>
2135</tr>
2136<tr id="Clarke03cegarsymbolic" class="entry">
2137        <td>Clarke, E.M., Grumberg, O., Jha, S., Lu, Y. &amp; Veith, H.&nbsp;</td>
2138        <td>Counterexample-guided bstraction refinement for symbolic model checking. <p class="infolinks">[<a href="javascript:toggleInfo('Clarke03cegarsymbolic','bibtex')">BibTeX</a>]</p></td>
2139        <td>2003</td>
2140        <td>Journal of the ACM<br/>Vol. 50(5), pp. 752-794&nbsp;</td>
2141        <td>article</td>
2142        <td>&nbsp;</td>
2143        <td><div class="bibtex_pdf">
2144            <a href="docs/Counterexample-guided abstraction refinement.pdf">PDF</a>
2145          </div>&nbsp;</td>
2146</tr>
2147<tr id="bib_Clarke03cegarsymbolic" class="bibtex noshow">
2148<td colspan="7"><b>BibTeX</b>:
2149<pre>
2150@article{Clarke03cegarsymbolic,
2151  author = {E.~M. Clarke and O. Grumberg and S. Jha and Y. Lu and H. Veith},
2152  title = {Counterexample-guided bstraction refinement for symbolic model checking.},
2153  journal = {Journal of the ACM},
2154  year = {2003},
2155  volume = {50},
2156  number = {5},
2157  pages = {752-794}
2158}
2159</pre></td>
2160</tr>
2161<tr id="DBLP:conf/dac/ClarkeGMZ95" class="entry">
2162        <td>Clarke, E.M., Grumberg, O., McMillan, K.L. &amp; Zhao, X.&nbsp;</td>
2163        <td>Efficient Generation of Counterexamples and Witnesses in Symbolic Model Checking <p class="infolinks">[<a href="javascript:toggleInfo('DBLP:conf/dac/ClarkeGMZ95','bibtex')">BibTeX</a>]</p></td>
2164        <td>1995</td>
2165        <td>DAC, pp. 427-432&nbsp;</td>
2166        <td>inproceedings</td>
2167        <td>&nbsp;</td>
2168        <td>&nbsp;</td>
2169</tr>
2170<tr id="bib_DBLP:conf/dac/ClarkeGMZ95" class="bibtex noshow">
2171<td colspan="7"><b>BibTeX</b>:
2172<pre>
2173@inproceedings{DBLP:conf/dac/ClarkeGMZ95,
2174  author = {Edmund M. Clarke and Orna Grumberg and Kenneth L. McMillan and Xudong Zhao},
2175  title = {Efficient Generation of Counterexamples and Witnesses in Symbolic Model Checking},
2176  booktitle = {DAC},
2177  year = {1995},
2178  pages = {427-432}
2179}
2180</pre></td>
2181</tr>
2182<tr id="DBLP:journals/tcad/ClarkeGS04" class="entry">
2183        <td>Clarke, E.M., Gupta, A. &amp; Strichman, O.&nbsp;</td>
2184        <td>SAT-based counterexample-guided abstraction refinement <p class="infolinks">[<a href="javascript:toggleInfo('DBLP:journals/tcad/ClarkeGS04','bibtex')">BibTeX</a>]</p></td>
2185        <td>2004</td>
2186        <td>IEEE Trans. on CAD of Integrated Circuits and Systems<br/>Vol. 23(7), pp. 1113-1123&nbsp;</td>
2187        <td>article</td>
2188        <td>&nbsp;</td>
2189        <td><div class="bibtex_pdf">
2190            <a href="docs/SATBasedCegar2004Clarke.pdf">PDF</a>
2191          </div>&nbsp;</td>
2192</tr>
2193<tr id="bib_DBLP:journals/tcad/ClarkeGS04" class="bibtex noshow">
2194<td colspan="7"><b>BibTeX</b>:
2195<pre>
2196@article{DBLP:journals/tcad/ClarkeGS04,
2197  author = {Edmund M. Clarke and Anubhav Gupta and Ofer Strichman},
2198  title = {SAT-based counterexample-guided abstraction refinement},
2199  journal = {IEEE Trans. on CAD of Integrated Circuits and Systems},
2200  year = {2004},
2201  volume = {23},
2202  number = {7},
2203  pages = {1113-1123}
2204}
2205</pre></td>
2206</tr>
2207<tr id="DBLP:conf/birthday/ClarkeKV10" class="entry">
2208        <td>Clarke, E.M., Kurshan, R.P. &amp; Veith, H.&nbsp;Zohar Manna and Doron Peled (Ed.)</td>
2209        <td>The Localization Reduction and Counterexample-Guided Abstraction Refinement <p class="infolinks">[<a href="javascript:toggleInfo('DBLP:conf/birthday/ClarkeKV10','bibtex')">BibTeX</a>]</p></td>
2210        <td>2010</td>
2211        <td><br/>Vol. 6200Essays in Memory of Amir Pnueli, pp. 61-71&nbsp;</td>
2212        <td>inproceedings</td>
2213        <td>&nbsp;</td>
2214        <td>&nbsp;</td>
2215</tr>
2216<tr id="bib_DBLP:conf/birthday/ClarkeKV10" class="bibtex noshow">
2217<td colspan="7"><b>BibTeX</b>:
2218<pre>
2219@inproceedings{DBLP:conf/birthday/ClarkeKV10,
2220  author = {Edmund M. Clarke and Robert P. Kurshan and Helmut Veith},
2221  title = {The Localization Reduction and Counterexample-Guided Abstraction Refinement},
2222  booktitle = {Essays in Memory of Amir Pnueli},
2223  publisher = {Springer},
2224  year = {2010},
2225  volume = {6200},
2226  pages = {61-71}
2227}
2228</pre></td>
2229</tr>
2230<tr id="DBLP:conf/lics/ClarkeLM89" class="entry">
2231        <td>Clarke, E.M., Long, D.E. &amp; McMillan, K.L.&nbsp;</td>
2232        <td>Compositional Model Checking <p class="infolinks">[<a href="javascript:toggleInfo('DBLP:conf/lics/ClarkeLM89','bibtex')">BibTeX</a>]</p></td>
2233        <td>1989</td>
2234        <td>LICS'89: Proceedings of the 4th Annual Symposium on Logic in Computer Science, pp. 353-362&nbsp;</td>
2235        <td>inproceedings</td>
2236        <td>&nbsp;</td>
2237        <td><div class="bibtex_pdf">
2238            <a href="docs/clarke89compo.ps">PDF</a>
2239          </div>&nbsp;</td>
2240</tr>
2241<tr id="bib_DBLP:conf/lics/ClarkeLM89" class="bibtex noshow">
2242<td colspan="7"><b>BibTeX</b>:
2243<pre>
2244@inproceedings{DBLP:conf/lics/ClarkeLM89,
2245  author = {E.~M.~Clarke and D.~E.~Long and K.~L.~McMillan},
2246  title = {Compositional Model Checking},
2247  booktitle = {LICS'89: Proceedings of the 4th Annual Symposium on Logic in Computer Science},
2248  publisher = {IEEE Computer Society},
2249  year = {1989},
2250  pages = {353-362}
2251}
2252</pre></td>
2253</tr>
2254<tr id="DBLP:conf/sat/ClarkeTVW03" class="entry">
2255        <td>Clarke, E.M., Talupur, M., Veith, H. &amp; Wang, D.&nbsp;Enrico Giunchiglia and Armando Tacchella (Ed.)</td>
2256        <td>SAT Based Predicate Abstraction for Hardware Verification <p class="infolinks">[<a href="javascript:toggleInfo('DBLP:conf/sat/ClarkeTVW03','bibtex')">BibTeX</a>]</p></td>
2257        <td>2003</td>
2258        <td><br/>Vol. 2919SAT, pp. 78-92&nbsp;</td>
2259        <td>inproceedings</td>
2260        <td>&nbsp;</td>
2261        <td><div class="bibtex_pdf">
2262            <a href="docs/SATBasedPredicateAbstactforHWVerif2004.pdf">PDF</a>
2263          </div>&nbsp;</td>
2264</tr>
2265<tr id="bib_DBLP:conf/sat/ClarkeTVW03" class="bibtex noshow">
2266<td colspan="7"><b>BibTeX</b>:
2267<pre>
2268@inproceedings{DBLP:conf/sat/ClarkeTVW03,
2269  author = {Edmund M. Clarke and Muralidhar Talupur and Helmut Veith and Dong Wang},
2270  title = {SAT Based Predicate Abstraction for Hardware Verification},
2271  booktitle = {SAT},
2272  publisher = {Springer},
2273  year = {2003},
2274  volume = {2919},
2275  pages = {78-92}
2276}
2277</pre></td>
2278</tr>
2279<tr id="tata97" class="entry">
2280        <td>Comon, H., Dauchet, M., Gilleron, R., Jacquemard, F., Lugiez, D., Tison, S. &amp; Tommasi, M.&nbsp;</td>
2281        <td>Tree Automata Techniques and Applications <p class="infolinks">[<a href="javascript:toggleInfo('tata97','bibtex')">BibTeX</a>]</p></td>
2282        <td>1997</td>
2283        <td>Available on: http://www.grappa.univ-lille3.fr/tata&nbsp;</td>
2284        <td>misc</td>
2285        <td>&nbsp;</td>
2286        <td><div class="bibtex_pdf">
2287            <a href="docs/tata.pdf">PDF</a>
2288          </div>&nbsp;</td>
2289</tr>
2290<tr id="bib_tata97" class="bibtex noshow">
2291<td colspan="7"><b>BibTeX</b>:
2292<pre>
2293@misc{tata97,
2294  author = {H. Comon and M. Dauchet and R. Gilleron and F. Jacquemard and D. Lugiez and S. Tison and M. Tommasi},
2295  title = {Tree Automata Techniques and Applications},
2296  year = {1997},
2297  note = {release October, 1rst 2002}
2298}
2299</pre></td>
2300</tr>
2301<tr id="madre" class="entry">
2302        <td>Coudert, O. &amp; Madre, J.-C.&nbsp;T. Knight and J. Savage (Ed.)</td>
2303        <td>A New Method to Compute Prime and Essential Prime Implicants of Boolean Functions <p class="infolinks">[<a href="javascript:toggleInfo('madre','abstract')">Abstract</a>] [<a href="javascript:toggleInfo('madre','bibtex')">BibTeX</a>]</p></td>
2304        <td>1992</td>
2305        <td>Advanced Research in VLSI and Parallel Systems, pp. 113-128&nbsp;</td>
2306        <td>inproceedings</td>
2307        <td>&nbsp;</td>
2308        <td>&nbsp;</td>
2309</tr>
2310<tr id="abs_madre" class="abstract noshow">
2311        <td colspan="7"><b>Abstract</b>:  This paper presents how prime implicants and essential prime implicants can be computed by means of meta-products encoded with of BDD's. It gives the equations that mimic the definitions, but it does not propose a recursive algorithm. The variable ordering is discussed and experimental results are provided that come from a benchmark of circuits. </td>
2312</tr>
2313<tr id="bib_madre" class="bibtex noshow">
2314<td colspan="7"><b>BibTeX</b>:
2315<pre>
2316@inproceedings{madre,
2317  author = {O.~Coudert and J.-C.~Madre},
2318  title = {A New Method to Compute Prime and Essential Prime Implicants of Boolean Functions},
2319  booktitle = {Advanced Research in VLSI and Parallel Systems},
2320  year = {1992},
2321  pages = {113--128}
2322}
2323</pre></td>
2324</tr>
2325<tr id="DBLP:conf/popl/CousotC77" class="entry">
2326        <td>Cousot, P. &amp; Cousot, R.&nbsp;</td>
2327        <td>Abstract Interpretation: A Unified Lattice Model for Static Analysis of Programs by Construction or Approximation of Fixpoints. <p class="infolinks">[<a href="javascript:toggleInfo('DBLP:conf/popl/CousotC77','bibtex')">BibTeX</a>]</p></td>
2328        <td>1977</td>
2329        <td>POPL'77: Proceedings of the 14th Annual ACM Symposium on Principles of Programming Languages, pp. 238-252&nbsp;</td>
2330        <td>inproceedings</td>
2331        <td>&nbsp;</td>
2332        <td>&nbsp;</td>
2333</tr>
2334<tr id="bib_DBLP:conf/popl/CousotC77" class="bibtex noshow">
2335<td colspan="7"><b>BibTeX</b>:
2336<pre>
2337@inproceedings{DBLP:conf/popl/CousotC77,
2338  author = {P.~Cousot and R.~Cousot},
2339  title = {Abstract Interpretation: A Unified Lattice Model for Static Analysis of Programs by Construction or Approximation of Fixpoints.},
2340  booktitle = {POPL'77: Proceedings of the 14th Annual ACM Symposium on Principles of Programming Languages},
2341  year = {1977},
2342  pages = {238-252}
2343}
2344</pre></td>
2345</tr>
2346<tr id="jmc-ag-djs:ddd" class="entry">
2347        <td>Couvreur, J., Griffault, A. &amp; Sherman, D.&nbsp;</td>
2348        <td>Diagrammes de d&eacute;cision pour la v&eacute;rification de r&eacute;seaux &agrave; files <p class="infolinks">[<a href="javascript:toggleInfo('jmc-ag-djs:ddd','bibtex')">BibTeX</a>]</p></td>
2349        <td>1999</td>
2350        <td>Mod&eacute;lisation de syst&egrave;mes r&eacute;actifs (MSR'99)&nbsp;</td>
2351        <td>inproceedings</td>
2352        <td>&nbsp;</td>
2353        <td>&nbsp;</td>
2354</tr>
2355<tr id="bib_jmc-ag-djs:ddd" class="bibtex noshow">
2356<td colspan="7"><b>BibTeX</b>:
2357<pre>
2358@inproceedings{jmc-ag-djs:ddd,
2359  author = {J.M.~Couvreur and A.~Griffault and D.J.~Sherman},
2360  title = {Diagrammes de d&eacute;cision pour la v&eacute;rification de r&eacute;seaux &agrave; files},
2361  booktitle = {Mod&eacute;lisation de syst&egrave;mes r&eacute;actifs (MSR'99)},
2362  year = {1999}
2363}
2364</pre></td>
2365</tr>
2366<tr id="CA94" class="entry">
2367        <td>Couvreur, J. &amp; Paviot-Adet, E.&nbsp;</td>
2368        <td>New Structural Invariants for Petri Nets Analysis <p class="infolinks">[<a href="javascript:toggleInfo('CA94','bibtex')">BibTeX</a>]</p></td>
2369        <td>1994</td>
2370        <td><br/>Vol. 815Proc. of ICATPN'94, pp. 199-218&nbsp;</td>
2371        <td>inproceedings</td>
2372        <td>&nbsp;</td>
2373        <td>&nbsp;</td>
2374</tr>
2375<tr id="bib_CA94" class="bibtex noshow">
2376<td colspan="7"><b>BibTeX</b>:
2377<pre>
2378@inproceedings{CA94,
2379  author = {J.M. Couvreur and E. Paviot-Adet},
2380  title = {New Structural Invariants for Petri Nets Analysis},
2381  booktitle = {Proc. of ICATPN'94},
2382  publisher = {Springer Verlag},
2383  year = {1994},
2384  volume = {815},
2385  pages = {199--218}
2386}
2387</pre></td>
2388</tr>
2389<tr id="CouvreurEPPW02" class="entry">
2390        <td>Couvreur, J.-M., Encrenaz, E., Paviot-Adet, E., Poitrenaud, D. &amp; Wacrenier, P.-A.&nbsp;Javier Esparza and Charles Lakos (Ed.)</td>
2391        <td>Data Decision Diagrams for Petri Net Analysis. <p class="infolinks">[<a href="javascript:toggleInfo('CouvreurEPPW02','bibtex')">BibTeX</a>]</p></td>
2392        <td>2002</td>
2393        <td><br/>Vol. 2360ICATPN'02: Proceedings of the 23rd International Conference on Applications and Theory of Petri Nets, pp. 101-120&nbsp;</td>
2394        <td>inproceedings</td>
2395        <td>&nbsp;</td>
2396        <td>&nbsp;</td>
2397</tr>
2398<tr id="bib_CouvreurEPPW02" class="bibtex noshow">
2399<td colspan="7"><b>BibTeX</b>:
2400<pre>
2401@inproceedings{CouvreurEPPW02,
2402  author = {J-M.~Couvreur and E.~Encrenaz and E.~Paviot-Adet and D.~Poitrenaud and P-A.~Wacrenier},
2403  title = {Data Decision Diagrams for Petri Net Analysis.},
2404  booktitle = {ICATPN'02: Proceedings of the 23rd International Conference on Applications and Theory of Petri Nets},
2405  publisher = {Springer},
2406  year = {2002},
2407  volume = {2360},
2408  pages = {101-120}
2409}
2410</pre></td>
2411</tr>
2412<tr id="couvreur05hierarchie" class="entry">
2413        <td>Couvreur, J.-M. &amp; Thierry-Mieg, Y.&nbsp;Farn Wang (Ed.)</td>
2414        <td>Hierarchical Decision Diagrams to Exploit Model Structure. <p class="infolinks">[<a href="javascript:toggleInfo('couvreur05hierarchie','bibtex')">BibTeX</a>]</p></td>
2415        <td>2005</td>
2416        <td><br/>Vol. 3731FORTE : Proceedings of the 25th IFIP WG 6.1 International Conference on Formal Techniques for Networked and Distributed Systems, pp. 443-457&nbsp;</td>
2417        <td>inproceedings</td>
2418        <td>&nbsp;</td>
2419        <td>&nbsp;</td>
2420</tr>
2421<tr id="bib_couvreur05hierarchie" class="bibtex noshow">
2422<td colspan="7"><b>BibTeX</b>:
2423<pre>
2424@inproceedings{couvreur05hierarchie,
2425  author = {J-M.~Couvreur and Y.~Thierry-Mieg},
2426  title = {Hierarchical Decision Diagrams to Exploit Model Structure.},
2427  booktitle = {FORTE : Proceedings of the 25th IFIP WG 6.1 International Conference on Formal Techniques for Networked and Distributed Systems},
2428  publisher = {Springer},
2429  year = {2005},
2430  volume = {3731},
2431  pages = {443-457}
2432}
2433</pre></td>
2434</tr>
2435<tr id="dams97abstract" class="entry">
2436        <td>Dams, D., Gerth, R. &amp; Grumberg, O.&nbsp;</td>
2437        <td>Abstract interpretation of reactive systems <p class="infolinks">[<a href="javascript:toggleInfo('dams97abstract','bibtex')">BibTeX</a>]</p></td>
2438        <td>1997</td>
2439        <td>ACM Transactions on Programming Languages and Systems<br/>Vol. 19(2), pp. 253-291&nbsp;</td>
2440        <td>article</td>
2441        <td><a href="http://doi.acm.org/10.1145/244795.244800">DOI</a> &nbsp;</td>
2442        <td>&nbsp;</td>
2443</tr>
2444<tr id="bib_dams97abstract" class="bibtex noshow">
2445<td colspan="7"><b>BibTeX</b>:
2446<pre>
2447@article{dams97abstract,
2448  author = {D.~Dams and R.~Gerth and O.~Grumberg},
2449  title = {Abstract interpretation of reactive systems},
2450  journal = {ACM Transactions on Programming Languages and Systems},
2451  publisher = {ACM Press},
2452  year = {1997},
2453  volume = {19},
2454  number = {2},
2455  pages = {253--291},
2456  doi = {http://doi.acm.org/10.1145/244795.244800}
2457}
2458</pre></td>
2459</tr>
2460<tr id="DBLP:conf/vmcai/DamsN05" class="entry">
2461        <td>Dams, D. &amp; Namjoshi, K.S.&nbsp;Radhia Cousot (Ed.)</td>
2462        <td>Automata as Abstractions. <p class="infolinks">[<a href="javascript:toggleInfo('DBLP:conf/vmcai/DamsN05','bibtex')">BibTeX</a>]</p></td>
2463        <td>2005</td>
2464        <td><br/>Vol. 3385VMCAI'05: Proceedings of the 6th International Conference on Verification, Model Checking, and Abstract Interpretation, pp. 216-232&nbsp;</td>
2465        <td>inproceedings</td>
2466        <td>&nbsp;</td>
2467        <td><div class="bibtex_pdf">
2468            <a href="docs/automata_aabstr.pdf">PDF</a>
2469          </div>&nbsp;</td>
2470</tr>
2471<tr id="bib_DBLP:conf/vmcai/DamsN05" class="bibtex noshow">
2472<td colspan="7"><b>BibTeX</b>:
2473<pre>
2474@inproceedings{DBLP:conf/vmcai/DamsN05,
2475  author = {D.~Dams and K.~S.~Namjoshi},
2476  title = {Automata as Abstractions.},
2477  booktitle = {VMCAI'05: Proceedings of the 6th International Conference on Verification, Model Checking, and Abstract Interpretation},
2478  publisher = {Springer},
2479  year = {2005},
2480  volume = {3385},
2481  pages = {216-232}
2482}
2483</pre></td>
2484</tr>
2485<tr id="DBLP:conf/lics/DamsN04" class="entry">
2486        <td>Dams, D. &amp; Namjoshi, K.S.&nbsp;</td>
2487        <td>The Existence of Finite Abstractions for Branching Time Model Checking. <p class="infolinks">[<a href="javascript:toggleInfo('DBLP:conf/lics/DamsN04','bibtex')">BibTeX</a>]</p></td>
2488        <td>2004</td>
2489        <td>LICS04, pp. 335-344&nbsp;</td>
2490        <td>inproceedings</td>
2491        <td>&nbsp;</td>
2492        <td><div class="bibtex_pdf">
2493            <a href="docs/abstractforbtl.pdf">PDF</a>
2494          </div>&nbsp;</td>
2495</tr>
2496<tr id="bib_DBLP:conf/lics/DamsN04" class="bibtex noshow">
2497<td colspan="7"><b>BibTeX</b>:
2498<pre>
2499@inproceedings{DBLP:conf/lics/DamsN04,
2500  author = {D.~Dams and K.~S.~Namjoshi},
2501  title = {The Existence of Finite Abstractions for Branching Time Model Checking.},
2502  booktitle = {LICS04},
2503  publisher = {IEEE Computer Society},
2504  year = {2004},
2505  pages = {335-344}
2506}
2507</pre></td>
2508</tr>
2509<tr id="Darbari08transient" class="entry">
2510        <td>Darbari, A., Al Hashimi, B., Harrod, P. &amp; Bradley, D.&nbsp;</td>
2511        <td>A New Approach for Transient Fault Injection Using Symbolic Simulation <p class="infolinks">[<a href="javascript:toggleInfo('Darbari08transient','bibtex')">BibTeX</a>]</p></td>
2512        <td>2008</td>
2513        <td>On-Line Testing Symposium, 2008. IOLTS '08. 14th IEEE InternationalIEEE International Symposium On-line Testing Symposium, pp. 93-98&nbsp;</td>
2514        <td>inproceedings</td>
2515        <td><a href="http://dx.doi.org/10.1109/IOLTS.2008.59">DOI</a> &nbsp;</td>
2516        <td>&nbsp;</td>
2517</tr>
2518<tr id="bib_Darbari08transient" class="bibtex noshow">
2519<td colspan="7"><b>BibTeX</b>:
2520<pre>
2521@inproceedings{Darbari08transient,
2522  author = {Darbari, A. and Al Hashimi, B. and Harrod, P. and Bradley, D.},
2523  title = {A New Approach for Transient Fault Injection Using Symbolic Simulation},
2524  booktitle = {IEEE International Symposium On-line Testing Symposium},
2525  journal = {On-Line Testing Symposium, 2008. IOLTS '08. 14th IEEE International},
2526  year = {2008},
2527  pages = {93-98},
2528  doi = {http://dx.doi.org/10.1109/IOLTS.2008.59}
2529}
2530</pre></td>
2531</tr>
2532<tr id="duret03dea" class="entry">
2533        <td>Duret-Lutz, A. &amp; Rebiha, R.&nbsp;</td>
2534        <td>SPOT : Une bibliothÚque de vérificaion de propriétés de logique temporelle à temps linéaire <p class="infolinks">[<a href="javascript:toggleInfo('duret03dea','bibtex')">BibTeX</a>]</p></td>
2535        <td>2003</td>
2536        <td>&nbsp;</td>
2537        <td>misc</td>
2538        <td>&nbsp;</td>
2539        <td><div class="bibtex_pdf">
2540            <a href="docs/rap_stage_duret_lutz_2003.pdf">PDF</a>
2541          </div>&nbsp;</td>
2542</tr>
2543<tr id="bib_duret03dea" class="bibtex noshow">
2544<td colspan="7"><b>BibTeX</b>:
2545<pre>
2546@misc{duret03dea,
2547  author = {A.~Duret-Lutz and R.~Rebiha},
2548  title = {SPOT : Une bibliothÚque de vérificaion de propriétés de logique temporelle à temps linéaire},
2549  year = {2003}
2550}
2551</pre></td>
2552</tr>
2553<tr id="dwyer99patterns" class="entry">
2554        <td>Dwyer, M.B., Avrunin, G.S. &amp; Corbett, J.C.&nbsp;ACM (Ed.)</td>
2555        <td>Patterns in Property Specifications for Finite-State Verification. <p class="infolinks">[<a href="javascript:toggleInfo('dwyer99patterns','bibtex')">BibTeX</a>]</p></td>
2556        <td>1999</td>
2557        <td>ICSE' 99. Proceedings of the 1999 International Conference on Software Engineering, pp. 411-420&nbsp;</td>
2558        <td>inproceedings</td>
2559        <td><a href="http://patterns.projects.cis.ksu.edu/collaborations/papers.shtml">URL</a>&nbsp;</td>
2560        <td>&nbsp;</td>
2561</tr>
2562<tr id="bib_dwyer99patterns" class="bibtex noshow">
2563<td colspan="7"><b>BibTeX</b>:
2564<pre>
2565@inproceedings{dwyer99patterns,
2566  author = {M. B. Dwyer and G. S. Avrunin and J. C. Corbett},
2567  title = {Patterns in Property Specifications for Finite-State Verification.},
2568  booktitle = {ICSE' 99. Proceedings of the 1999 International Conference on Software Engineering},
2569  year = {1999},
2570  pages = {411-420},
2571  url = {http://patterns.projects.cis.ksu.edu/collaborations/papers.shtml}
2572}
2573</pre></td>
2574</tr>
2575<tr id="DBLP:conf/icse/DwyerHJLPRZV01" class="entry">
2576        <td>Dwyer, M.B., Hatcliff, J., Joehanes, R., Laubach, S., Pasareanu, C.S., Robby, Zheng, H. &amp; Visser, W.&nbsp;</td>
2577        <td>Tool-Supported Program Abstraction for Finite-State Verification. <p class="infolinks">[<a href="javascript:toggleInfo('DBLP:conf/icse/DwyerHJLPRZV01','bibtex')">BibTeX</a>]</p></td>
2578        <td>2001</td>
2579        <td>ICSE, pp. 177-187&nbsp;</td>
2580        <td>inproceedings</td>
2581        <td>&nbsp;</td>
2582        <td><div class="bibtex_pdf">
2583            <a href="docs/bandera.pdf">PDF</a>
2584          </div>&nbsp;</td>
2585</tr>
2586<tr id="bib_DBLP:conf/icse/DwyerHJLPRZV01" class="bibtex noshow">
2587<td colspan="7"><b>BibTeX</b>:
2588<pre>
2589@inproceedings{DBLP:conf/icse/DwyerHJLPRZV01,
2590  author = {Matthew B. Dwyer and John Hatcliff and Roby Joehanes and Shawn Laubach and Corina S. Pasareanu and Robby and Hongjun Zheng and Willem Visser},
2591  title = {Tool-Supported Program Abstraction for Finite-State Verification.},
2592  booktitle = {ICSE},
2593  publisher = {IEEE Computer Society},
2594  year = {2001},
2595  pages = {177-187}
2596}
2597</pre></td>
2598</tr>
2599<tr id="DBLP:conf/icse/EasterbrookCDGLPTT03" class="entry">
2600        <td>Easterbrook, S., Chechik, M., Devereux, B., Gurfinkel, A., Lai, A., Petrovykh, V., Tafliovich, A. &amp; Thompson-Walsh, C.&nbsp;</td>
2601        <td>$i$Chek: A Model Checker for Multi-Valued Reasoning. <p class="infolinks">[<a href="javascript:toggleInfo('DBLP:conf/icse/EasterbrookCDGLPTT03','bibtex')">BibTeX</a>]</p></td>
2602        <td>2003</td>
2603        <td>ICSE'03: Proceedings of the 25th International Conference on Software Engineering, pp. 804-805&nbsp;</td>
2604        <td>inproceedings</td>
2605        <td>&nbsp;</td>
2606        <td>&nbsp;</td>
2607</tr>
2608<tr id="bib_DBLP:conf/icse/EasterbrookCDGLPTT03" class="bibtex noshow">
2609<td colspan="7"><b>BibTeX</b>:
2610<pre>
2611@inproceedings{DBLP:conf/icse/EasterbrookCDGLPTT03,
2612  author = {S.M.~Easterbrook and M.~Chechik and B.~Devereux and A.~Gurfinkel and A.~Lai and V.~Petrovykh and A.~Tafliovich and C.~Thompson-Walsh},
2613  title = {$i$Chek: A Model Checker for Multi-Valued Reasoning.},
2614  booktitle = {ICSE'03: Proceedings of the 25th International Conference on Software Engineering},
2615  publisher = {IEEE Computer Society},
2616  year = {2003},
2617  pages = {804-805}
2618}
2619</pre></td>
2620</tr>
2621<tr id="EasterbrookC01" class="entry">
2622        <td>Easterbrook, S.M. &amp; Chechik, M.&nbsp;</td>
2623        <td>A Framework for Multi-Valued Reasoning over Inconsistent Viewpoints. <p class="infolinks">[<a href="javascript:toggleInfo('EasterbrookC01','bibtex')">BibTeX</a>]</p></td>
2624        <td>2001</td>
2625        <td>ICSE, pp. 411-420&nbsp;</td>
2626        <td>inproceedings</td>
2627        <td>&nbsp;</td>
2628        <td><div class="bibtex_pdf">
2629            <a href="docs/easterbrook01a.pdf">PDF</a>
2630          </div>&nbsp;</td>
2631</tr>
2632<tr id="bib_EasterbrookC01" class="bibtex noshow">
2633<td colspan="7"><b>BibTeX</b>:
2634<pre>
2635@inproceedings{EasterbrookC01,
2636  author = {Steve M. Easterbrook and Marsha Chechik},
2637  title = {A Framework for Multi-Valued Reasoning over Inconsistent Viewpoints.},
2638  booktitle = {ICSE},
2639  publisher = {IEEE Computer Society},
2640  year = {2001},
2641  pages = {411-420}
2642}
2643</pre></td>
2644</tr>
2645<tr id="emerson82desision" class="entry">
2646        <td>Emerson, E. &amp; Halpern, J.&nbsp;</td>
2647        <td>Decision Procedures and Expressiveness in the Temporal Logic of Branching Time <p class="infolinks">[<a href="javascript:toggleInfo('emerson82desision','bibtex')">BibTeX</a>]</p></td>
2648        <td>1982</td>
2649        <td>STOC, pp. 169-180&nbsp;</td>
2650        <td>inproceedings</td>
2651        <td>&nbsp;</td>
2652        <td><div class="bibtex_pdf">
2653            <a href="docs/ctl_emerson82.pdf">PDF</a>
2654          </div>&nbsp;</td>
2655</tr>
2656<tr id="bib_emerson82desision" class="bibtex noshow">
2657<td colspan="7"><b>BibTeX</b>:
2658<pre>
2659@inproceedings{emerson82desision,
2660  author = {E.A.~Emerson and J.Y.~Halpern},
2661  title = {Decision Procedures and Expressiveness in the Temporal Logic of Branching Time},
2662  booktitle = {STOC},
2663  publisher = {ACM},
2664  year = {1982},
2665  pages = {169-180}
2666}
2667</pre></td>
2668</tr>
2669<tr id="DBLP:journals/tcad/FeySBD08" class="entry">
2670        <td>Fey, G&ouml;., Staber, S., Bloem, R. &amp; Drechsler, R.&nbsp;</td>
2671        <td>Automatic Fault Localization for Property Checking <p class="infolinks">[<a href="javascript:toggleInfo('DBLP:journals/tcad/FeySBD08','bibtex')">BibTeX</a>]</p></td>
2672        <td>2008</td>
2673        <td>IEEE Trans. on CAD of Integrated Circuits and Systems<br/>Vol. 27(6), pp. 1138-1149&nbsp;</td>
2674        <td>article</td>
2675        <td>&nbsp;</td>
2676        <td>&nbsp;</td>
2677</tr>
2678<tr id="bib_DBLP:journals/tcad/FeySBD08" class="bibtex noshow">
2679<td colspan="7"><b>BibTeX</b>:
2680<pre>
2681@article{DBLP:journals/tcad/FeySBD08,
2682  author = {G&ouml;rschwin Fey and Stefan Staber and Roderick Bloem and Rolf Drechsler},
2683  title = {Automatic Fault Localization for Property Checking},
2684  journal = {IEEE Trans. on CAD of Integrated Circuits and Systems},
2685  year = {2008},
2686  volume = {27},
2687  number = {6},
2688  pages = {1138-1149}
2689}
2690</pre></td>
2691</tr>
2692<tr id="fitting91bilattices" class="entry">
2693        <td>Fitting, M.&nbsp;</td>
2694        <td>Bilattices and the Semantics of Logic Programming. <p class="infolinks">[<a href="javascript:toggleInfo('fitting91bilattices','bibtex')">BibTeX</a>]</p></td>
2695        <td>1991</td>
2696        <td>Journal of Logic Programming<br/>Vol. 11(1{\&}2), pp. 91-116&nbsp;</td>
2697        <td>article</td>
2698        <td>&nbsp;</td>
2699        <td><div class="bibtex_pdf">
2700            <a href="docs/BilSemLP.pdf">PDF</a>
2701          </div>&nbsp;</td>
2702</tr>
2703<tr id="bib_fitting91bilattices" class="bibtex noshow">
2704<td colspan="7"><b>BibTeX</b>:
2705<pre>
2706@article{fitting91bilattices,
2707  author = {M.~Fitting},
2708  title = {Bilattices and the Semantics of Logic Programming.},
2709  journal = {Journal of Logic Programming},
2710  year = {1991},
2711  volume = {11},
2712  number = {1&amp;2},
2713  pages = {91-116}
2714}
2715</pre></td>
2716</tr>
2717<tr id="DBLP:conf/date/GanaiGA05" class="entry">
2718        <td>Ganai, M.K., Gupta, A. &amp; Ashar, P.&nbsp;</td>
2719        <td>Verification of Embedded Memory Systems using Efficient Memory Modeling <p class="infolinks">[<a href="javascript:toggleInfo('DBLP:conf/date/GanaiGA05','bibtex')">BibTeX</a>]</p></td>
2720        <td>2005</td>
2721        <td>DATE, pp. 1096-1101&nbsp;</td>
2722        <td>inproceedings</td>
2723        <td>&nbsp;</td>
2724        <td><div class="bibtex_pdf">
2725            <a href="docs/VerifEmbededMemoryusingEMM09.pdf">PDF</a>
2726          </div>&nbsp;</td>
2727</tr>
2728<tr id="bib_DBLP:conf/date/GanaiGA05" class="bibtex noshow">
2729<td colspan="7"><b>BibTeX</b>:
2730<pre>
2731@inproceedings{DBLP:conf/date/GanaiGA05,
2732  author = {Malay K. Ganai and Aarti Gupta and Pranav Ashar},
2733  title = {Verification of Embedded Memory Systems using Efficient Memory Modeling},
2734  booktitle = {DATE},
2735  year = {2005},
2736  pages = {1096-1101}
2737}
2738</pre></td>
2739</tr>
2740<tr id="godefroid03expressiveness" class="entry">
2741        <td>Godefroid, P. &amp; Jagadeesan, R.&nbsp;</td>
2742        <td>On the Expressiveness of 3-Valued Models <p class="infolinks">[<a href="javascript:toggleInfo('godefroid03expressiveness','bibtex')">BibTeX</a>]</p></td>
2743        <td>2003</td>
2744        <td>VMCAI 2003: Proceedings of the 4th International Conference on Verification, Model Checking, and Abstract Interpretation, pp. 206-222&nbsp;</td>
2745        <td>inproceedings</td>
2746        <td>&nbsp;</td>
2747        <td><div class="bibtex_pdf">
2748            <a href="docs/vmcai2003.ps">PDF</a>
2749          </div>&nbsp;</td>
2750</tr>
2751<tr id="bib_godefroid03expressiveness" class="bibtex noshow">
2752<td colspan="7"><b>BibTeX</b>:
2753<pre>
2754@inproceedings{godefroid03expressiveness,
2755  author = {Patrice Godefroid and Radha Jagadeesan},
2756  title = {On the Expressiveness of 3-Valued Models},
2757  booktitle = {VMCAI 2003: Proceedings of the 4th International Conference on Verification, Model Checking, and Abstract Interpretation},
2758  publisher = {Springer-Verlag},
2759  year = {2003},
2760  pages = {206--222}
2761}
2762</pre></td>
2763</tr>
2764<tr id="DBLP:conf/cav/GodefroidJ02" class="entry">
2765        <td>Godefroid, P. &amp; Jagadeesan, R.&nbsp;Ed Brinksma and Kim Guldstrand Larsen (Ed.)</td>
2766        <td>Automatic Abstraction Using Generalized Model Checking. <p class="infolinks">[<a href="javascript:toggleInfo('DBLP:conf/cav/GodefroidJ02','bibtex')">BibTeX</a>]</p></td>
2767        <td>2002</td>
2768        <td><br/>Vol. 2404CAV, pp. 137-150&nbsp;</td>
2769        <td>inproceedings</td>
2770        <td>&nbsp;</td>
2771        <td>&nbsp;</td>
2772</tr>
2773<tr id="bib_DBLP:conf/cav/GodefroidJ02" class="bibtex noshow">
2774<td colspan="7"><b>BibTeX</b>:
2775<pre>
2776@inproceedings{DBLP:conf/cav/GodefroidJ02,
2777  author = {P.~Godefroid and R.~Jagadeesan},
2778  title = {Automatic Abstraction Using Generalized Model Checking.},
2779  booktitle = {CAV},
2780  publisher = {Springer},
2781  year = {2002},
2782  volume = {2404},
2783  pages = {137-150}
2784}
2785</pre></td>
2786</tr>
2787<tr id="goelL00formal" class="entry">
2788        <td>Goel, A. &amp; Lee, W.R.&nbsp;ACM (Ed.)</td>
2789        <td>Formal Verification of an IBM CoreConnect Processor Local Bus Arbiter Core <p class="infolinks">[<a href="javascript:toggleInfo('goelL00formal','bibtex')">BibTeX</a>]</p></td>
2790        <td>2000</td>
2791        <td>DAC'00: Proceedings of the 37th Conference on Design Automation, pp. 196-200&nbsp;</td>
2792        <td>inproceedings</td>
2793        <td>&nbsp;</td>
2794        <td><div class="bibtex_pdf">
2795            <a href="docs/p196-goel.pdf">PDF</a>
2796          </div>&nbsp;</td>
2797</tr>
2798<tr id="bib_goelL00formal" class="bibtex noshow">
2799<td colspan="7"><b>BibTeX</b>:
2800<pre>
2801@inproceedings{goelL00formal,
2802  author = {A.~Goel and W.~R.~Lee},
2803  title = {Formal Verification of an IBM CoreConnect Processor Local Bus Arbiter Core},
2804  booktitle = {DAC'00: Proceedings of the 37th Conference on Design Automation},
2805  year = {2000},
2806  pages = {196-200}
2807}
2808</pre></td>
2809</tr>
2810<tr id="GrafS97pvs" class="entry">
2811        <td>Graf, S. &amp; Sadi, H.&nbsp;Orna Grumberg (Ed.)</td>
2812        <td>Construction of Abstract State Graphs with PVS. <p class="infolinks">[<a href="javascript:toggleInfo('GrafS97pvs','bibtex')">BibTeX</a>]</p></td>
2813        <td>1997</td>
2814        <td><br/>Vol. 1254CAV, pp. 72-83&nbsp;</td>
2815        <td>inproceedings</td>
2816        <td>&nbsp;</td>
2817        <td><div class="bibtex_pdf">
2818            <a href="docs/graf97cinstructionpvs.ps">PDF</a>
2819          </div>&nbsp;</td>
2820</tr>
2821<tr id="bib_GrafS97pvs" class="bibtex noshow">
2822<td colspan="7"><b>BibTeX</b>:
2823<pre>
2824@inproceedings{GrafS97pvs,
2825  author = {S.~Graf and H.~Sadi},
2826  title = {Construction of Abstract State Graphs with PVS.},
2827  booktitle = {CAV},
2828  publisher = {Springer},
2829  year = {1997},
2830  volume = {1254},
2831  pages = {72-83}
2832}
2833</pre></td>
2834</tr>
2835<tr id="grumberg05abstraction" class="entry">
2836        <td>Grumberg, O.&nbsp;Frank S. de Boer and Marcello M. Bonsangue and Susanne Graf and Willem P. de Roever (Ed.)</td>
2837        <td>Abstraction and Refinement in Model Checking. <p class="infolinks">[<a href="javascript:toggleInfo('grumberg05abstraction','bibtex')">BibTeX</a>]</p></td>
2838        <td>2005</td>
2839        <td><br/>Vol. 4111FMCO'05: 4th International Symposium on Formal Methods for Components and Objects,, pp. 219-242&nbsp;</td>
2840        <td>inproceedings</td>
2841        <td>&nbsp;</td>
2842        <td>&nbsp;</td>
2843</tr>
2844<tr id="bib_grumberg05abstraction" class="bibtex noshow">
2845<td colspan="7"><b>BibTeX</b>:
2846<pre>
2847@inproceedings{grumberg05abstraction,
2848  author = {Orna Grumberg},
2849  title = {Abstraction and Refinement in Model Checking.},
2850  booktitle = {FMCO'05: 4th International Symposium on Formal Methods for Components and Objects,},
2851  publisher = {Springer},
2852  year = {2005},
2853  volume = {4111},
2854  pages = {219-242}
2855}
2856</pre></td>
2857</tr>
2858<tr id="GL91" class="entry">
2859        <td>Grumberg, O. &amp; Long, D.&nbsp;</td>
2860        <td>Model Checking and Modular Verification <p class="infolinks">[<a href="javascript:toggleInfo('GL91','bibtex')">BibTeX</a>]</p></td>
2861        <td>1991</td>
2862        <td><br/>Vol. 527International Conference on Concurrency Theory, pp. 250-263&nbsp;</td>
2863        <td>inproceedings</td>
2864        <td>&nbsp;</td>
2865        <td><div class="bibtex_pdf">
2866            <a href="docs/p843-grumberg.pdf">PDF</a>
2867          </div>&nbsp;</td>
2868</tr>
2869<tr id="bib_GL91" class="bibtex noshow">
2870<td colspan="7"><b>BibTeX</b>:
2871<pre>
2872@inproceedings{GL91,
2873  author = {O.~Grumberg and D.E.~Long},
2874  title = {Model Checking and Modular Verification},
2875  booktitle = {International Conference on Concurrency Theory},
2876  publisher = {Springer Verlag},
2877  year = {1991},
2878  volume = {527},
2879  pages = {250--263}
2880}
2881</pre></td>
2882</tr>
2883<tr id="Gupta92syrvey" class="entry">
2884        <td>Gupta, A.&nbsp;</td>
2885        <td>Formal Hardware Verification Methods: A Survey. <p class="infolinks">[<a href="javascript:toggleInfo('Gupta92syrvey','bibtex')">BibTeX</a>]</p></td>
2886        <td>1992</td>
2887        <td>Formal Methods in System Design<br/>Vol. 1(2/3), pp. 151-238&nbsp;</td>
2888        <td>article</td>
2889        <td>&nbsp;</td>
2890        <td>&nbsp;</td>
2891</tr>
2892<tr id="bib_Gupta92syrvey" class="bibtex noshow">
2893<td colspan="7"><b>BibTeX</b>:
2894<pre>
2895@article{Gupta92syrvey,
2896  author = {A.~Gupta},
2897  title = {Formal Hardware Verification Methods: A Survey.},
2898  journal = {Formal Methods in System Design},
2899  year = {1992},
2900  volume = {1},
2901  number = {2/3},
2902  pages = {151-238}
2903}
2904</pre></td>
2905</tr>
2906<tr id="DBLP:conf/sfm/GuptaGW06" class="entry">
2907        <td>Gupta, A., Ganai, M.K. &amp; Wang, C.&nbsp;Marco Bernardo and Alessandro Cimatti (Ed.)</td>
2908        <td>SAT-Based Verification Methods and Applications in Hardware Verification <p class="infolinks">[<a href="javascript:toggleInfo('DBLP:conf/sfm/GuptaGW06','bibtex')">BibTeX</a>]</p></td>
2909        <td>2006</td>
2910        <td><br/>Vol. 3965SFM, pp. 108-143&nbsp;</td>
2911        <td>inproceedings</td>
2912        <td>&nbsp;</td>
2913        <td><div class="bibtex_pdf">
2914            <a href="docs/SATBasedVerifMethodAndApplitoHdw2006.pdf">PDF</a>
2915          </div>&nbsp;</td>
2916</tr>
2917<tr id="bib_DBLP:conf/sfm/GuptaGW06" class="bibtex noshow">
2918<td colspan="7"><b>BibTeX</b>:
2919<pre>
2920@inproceedings{DBLP:conf/sfm/GuptaGW06,
2921  author = {Aarti Gupta and Malay K. Ganai and Chao Wang},
2922  title = {SAT-Based Verification Methods and Applications in Hardware Verification},
2923  booktitle = {SFM},
2924  publisher = {Springer},
2925  year = {2006},
2926  volume = {3965},
2927  pages = {108-143}
2928}
2929</pre></td>
2930</tr>
2931<tr id="gurfinkelC06waste" class="entry">
2932        <td>Gurfinkel, A. &amp; Chechik, M.&nbsp;Holger Hermanns and Jens Palsberg (Ed.)</td>
2933        <td>Why Waste a Perfectly Good Abstraction?. <p class="infolinks">[<a href="javascript:toggleInfo('gurfinkelC06waste','bibtex')">BibTeX</a>]</p></td>
2934        <td>2006</td>
2935        <td><br/>Vol. 3920TACAS'06: Proceedings of the 12th international conference on Tools and Algorithms for the Construction and Analysis of Systems, pp. 212-226&nbsp;</td>
2936        <td>inproceedings</td>
2937        <td>&nbsp;</td>
2938        <td><div class="bibtex_pdf">
2939            <a href="docs/gurfinkel_tacas_06.pdf">PDF</a>
2940          </div>&nbsp;</td>
2941</tr>
2942<tr id="bib_gurfinkelC06waste" class="bibtex noshow">
2943<td colspan="7"><b>BibTeX</b>:
2944<pre>
2945@inproceedings{gurfinkelC06waste,
2946  author = {A.~Gurfinkel and M.~Chechik},
2947  title = {Why Waste a Perfectly Good Abstraction?.},
2948  booktitle = {TACAS'06: Proceedings of the 12th international conference on Tools and Algorithms for the Construction and Analysis of Systems},
2949  publisher = {Springer},
2950  year = {2006},
2951  volume = {3920},
2952  pages = {212-226}
2953}
2954</pre></td>
2955</tr>
2956<tr id="DBLP:conf/vmcai/GurfinkelWC06" class="entry">
2957        <td>Gurfinkel, A., Wei, O. &amp; Chechik, M.&nbsp;E. Allen Emerson and Kedar S. Namjoshi (Ed.)</td>
2958        <td>Systematic Construction of Abstractions for Model-Checking <p class="infolinks">[<a href="javascript:toggleInfo('DBLP:conf/vmcai/GurfinkelWC06','bibtex')">BibTeX</a>]</p></td>
2959        <td>2006</td>
2960        <td><br/>Vol. 3855VMCAI, pp. 381-397&nbsp;</td>
2961        <td>inproceedings</td>
2962        <td>&nbsp;</td>
2963        <td>&nbsp;</td>
2964</tr>
2965<tr id="bib_DBLP:conf/vmcai/GurfinkelWC06" class="bibtex noshow">
2966<td colspan="7"><b>BibTeX</b>:
2967<pre>
2968@inproceedings{DBLP:conf/vmcai/GurfinkelWC06,
2969  author = {Arie Gurfinkel and Ou Wei and Marsha Chechik},
2970  title = {Systematic Construction of Abstractions for Model-Checking},
2971  booktitle = {VMCAI},
2972  publisher = {Springer},
2973  year = {2006},
2974  volume = {3855},
2975  pages = {381-397}
2976}
2977</pre></td>
2978</tr>
2979<tr id="GurfinkelWC06" class="entry">
2980        <td>Gurfinkel, A., Wei, O. &amp; Chechik, M.&nbsp;E. Allen Emerson and Kedar S. Namjoshi (Ed.)</td>
2981        <td>Systematic Construction of Abstractions for Model-Checking. <p class="infolinks">[<a href="javascript:toggleInfo('GurfinkelWC06','bibtex')">BibTeX</a>]</p></td>
2982        <td>2006</td>
2983        <td><br/>Vol. 3855VMCAI'06: Proceedings of the 7th International Conference on Verification, Model Checking, and Abstract Interpretation, pp. 381-397&nbsp;</td>
2984        <td>inproceedings</td>
2985        <td>&nbsp;</td>
2986        <td>&nbsp;</td>
2987</tr>
2988<tr id="bib_GurfinkelWC06" class="bibtex noshow">
2989<td colspan="7"><b>BibTeX</b>:
2990<pre>
2991@inproceedings{GurfinkelWC06,
2992  author = {Gurfinkel, A. and Wei, O. and Chechik, M.},
2993  title = {Systematic Construction of Abstractions for Model-Checking.},
2994  booktitle = {VMCAI'06: Proceedings of the 7th International Conference on Verification, Model Checking, and Abstract Interpretation},
2995  publisher = {Springer},
2996  year = {2006},
2997  volume = {3855},
2998  pages = {381-397}
2999}
3000</pre></td>
3001</tr>
3002<tr id="henzinger99dsp" class="entry">
3003        <td>Henzinger, T.A., Liu, X., Qadeer, S. &amp; Rajamani, S.K.&nbsp;Ellen Sentovich Jacob K. White (Ed.)</td>
3004        <td>Formal Specification and Verification of a Dataflow Processor Array. <p class="infolinks">[<a href="javascript:toggleInfo('henzinger99dsp','bibtex')">BibTeX</a>]</p></td>
3005        <td>1999</td>
3006        <td>ICCAD'99: Proceedings of the 1999 IEEE/ACM International Conference on Computer-Aided Design, pp. 494-499&nbsp;</td>
3007        <td>inproceedings</td>
3008        <td>&nbsp;</td>
3009        <td><div class="bibtex_pdf">
3010            <a href="docs/formal_specification_and_verification_of_a_dataflow_processor_array.pdf">PDF</a>
3011          </div>&nbsp;</td>
3012</tr>
3013<tr id="bib_henzinger99dsp" class="bibtex noshow">
3014<td colspan="7"><b>BibTeX</b>:
3015<pre>
3016@inproceedings{henzinger99dsp,
3017  author = {T.~A.~Henzinger and X.~Liu and S.~Qadeer and S.~K.~Rajamani},
3018  title = {Formal Specification and Verification of a Dataflow Processor Array.},
3019  booktitle = {ICCAD'99: Proceedings of the 1999 IEEE/ACM International Conference on Computer-Aided Design},
3020  year = {1999},
3021  pages = {494-499}
3022}
3023</pre></td>
3024</tr>
3025<tr id="henzinger00decomposing" class="entry">
3026        <td>Henzinger, T.A., Qadeer, S. &amp; Rajamani, S.K.&nbsp;</td>
3027        <td>Decomposing refinement proofs using assume-guarantee reasoning <p class="infolinks">[<a href="javascript:toggleInfo('henzinger00decomposing','bibtex')">BibTeX</a>]</p></td>
3028        <td>2000</td>
3029        <td>ICCAD '00: Proceedings of the 2000 IEEE/ACM international conference on Computer-aided design, pp. 245-253&nbsp;</td>
3030        <td>inproceedings</td>
3031        <td>&nbsp;</td>
3032        <td><div class="bibtex_pdf">
3033            <a href="docs/decomposing00henzinger.pdf">PDF</a>
3034          </div>&nbsp;</td>
3035</tr>
3036<tr id="bib_henzinger00decomposing" class="bibtex noshow">
3037<td colspan="7"><b>BibTeX</b>:
3038<pre>
3039@inproceedings{henzinger00decomposing,
3040  author = {Thomas A. Henzinger and Shaz Qadeer and Sriram K. Rajamani},
3041  title = {Decomposing refinement proofs using assume-guarantee reasoning},
3042  booktitle = {ICCAD '00: Proceedings of the 2000 IEEE/ACM international conference on Computer-aided design},
3043  publisher = {IEEE Press},
3044  year = {2000},
3045  pages = {245--253}
3046}
3047</pre></td>
3048</tr>
3049<tr id="C:HJMS03" class="entry">
3050        <td>Henzinger, T., Jhala, R., Majumdar, R. &amp; Sutre, G.&nbsp;</td>
3051        <td>Software Verification with BLAST <p class="infolinks">[<a href="javascript:toggleInfo('C:HJMS03','bibtex')">BibTeX</a>]</p></td>
3052        <td>2003</td>
3053        <td><br/>Vol. 2648SPIN'2003: Proceedings of the 10th International SPIN Workshop, pp. 235-239&nbsp;</td>
3054        <td>inproceedings</td>
3055        <td><a href="http://www.labri.fr/publications/mvtsi/2003/HJMS03">URL</a>&nbsp;</td>
3056        <td>&nbsp;</td>
3057</tr>
3058<tr id="bib_C:HJMS03" class="bibtex noshow">
3059<td colspan="7"><b>BibTeX</b>:
3060<pre>
3061@inproceedings{C:HJMS03,
3062  author = {Henzinger, T.A. and Jhala, R. and Majumdar, R. and Sutre, G.},
3063  title = {Software Verification with BLAST},
3064  booktitle = {SPIN'2003: Proceedings of the 10th International SPIN Workshop},
3065  publisher = {Springer},
3066  year = {2003},
3067  volume = {2648},
3068  pages = {235--239},
3069  note = {Tool paper},
3070  url = {http://www.labri.fr/publications/mvtsi/2003/HJMS03}
3071}
3072</pre></td>
3073</tr>
3074<tr id="henzinger98you" class="entry">
3075        <td>Henzinger, T., Qadeer, S. &amp; Rajamani, S.&nbsp;Moshe Y. Vardi Alan J. Hu (Ed.)</td>
3076        <td>You Assume, We Guarantee: Methodology and Case Studies <p class="infolinks">[<a href="javascript:toggleInfo('henzinger98you','bibtex')">BibTeX</a>]</p></td>
3077        <td>1998</td>
3078        <td><br/>Vol. 1427CAV'98: Proceedings of the 10th International Conference on Computer Aided Verification, pp. 440-451&nbsp;</td>
3079        <td>inproceedings</td>
3080        <td>&nbsp;</td>
3081        <td><div class="bibtex_pdf">
3082            <a href="docs/henzinger98you.ps.gz">PDF</a>
3083          </div>&nbsp;</td>
3084</tr>
3085<tr id="bib_henzinger98you" class="bibtex noshow">
3086<td colspan="7"><b>BibTeX</b>:
3087<pre>
3088@inproceedings{henzinger98you,
3089  author = {T.A.~Henzinger and S.~Qadeer and S.K.~Rajamani},
3090  title = {You Assume, We Guarantee: Methodology and Case Studies},
3091  booktitle = {CAV'98: Proceedings of the 10th International Conference on Computer Aided Verification},
3092  publisher = {Springer-Verlag},
3093  year = {1998},
3094  volume = {1427},
3095  pages = {440--451}
3096}
3097</pre></td>
3098</tr>
3099<tr id="henzinger02anassume" class="entry">
3100        <td>Henzinger, T., Qadeer, S., Rajamani, S. &amp; Tasiran, S.&nbsp;</td>
3101        <td>An Assume-Guarantee Rule for Checking Simulation <p class="infolinks">[<a href="javascript:toggleInfo('henzinger02anassume','bibtex')">BibTeX</a>]</p></td>
3102        <td>2002</td>
3103        <td>ACM Transactions on Programming Languages Systems<br/>Vol. 24(1), pp. 51-64&nbsp;</td>
3104        <td>article</td>
3105        <td><a href="http://doi.acm.org/10.1145/509705.509707">DOI</a> &nbsp;</td>
3106        <td><div class="bibtex_pdf">
3107            <a href="docs/henzinger98assumeguarantee.ps">PDF</a>
3108          </div>&nbsp;</td>
3109</tr>
3110<tr id="bib_henzinger02anassume" class="bibtex noshow">
3111<td colspan="7"><b>BibTeX</b>:
3112<pre>
3113@article{henzinger02anassume,
3114  author = {T.A.~Henzinger and S.~Qadeer and S.K.~Rajamani and S.~Tasiran},
3115  title = {An Assume-Guarantee Rule for Checking Simulation},
3116  journal = {ACM Transactions on Programming Languages Systems},
3117  publisher = {ACM Press},
3118  year = {2002},
3119  volume = {24},
3120  number = {1},
3121  pages = {51--64},
3122  doi = {http://doi.acm.org/10.1145/509705.509707}
3123}
3124</pre></td>
3125</tr>
3126<tr id="Holzmann97e" class="entry">
3127        <td>Holzmann, G.&nbsp;</td>
3128        <td>The Model Checker Spin <p class="infolinks">[<a href="javascript:toggleInfo('Holzmann97e','bibtex')">BibTeX</a>]</p></td>
3129        <td>1997</td>
3130        <td>IEEE Transactions on Software Engineering<br/>Vol. 23(5), pp. 279-295&nbsp;</td>
3131        <td>article</td>
3132        <td>&nbsp;</td>
3133        <td>&nbsp;</td>
3134</tr>
3135<tr id="bib_Holzmann97e" class="bibtex noshow">
3136<td colspan="7"><b>BibTeX</b>:
3137<pre>
3138@article{Holzmann97e,
3139  author = {G.J.~Holzmann},
3140  title = {The Model Checker Spin},
3141  journal = {IEEE Transactions on Software Engineering},
3142  year = {1997},
3143  volume = {23},
3144  number = {5},
3145  pages = {279--295},
3146  note = {Special issue on Formal Methods in Software Practice}
3147}
3148</pre></td>
3149</tr>
3150<tr id="hosabettu98decomposing" class="entry">
3151        <td>Hosabettu, R., Srivas, M. &amp; Gopalakrishnan, G.&nbsp;Alan J. Hu and Moshe Y. Vardi (Ed.)</td>
3152        <td>Decomposing the Proof of Correctness of Pipelined Microprocessors <p class="infolinks">[<a href="javascript:toggleInfo('hosabettu98decomposing','bibtex')">BibTeX</a>]</p></td>
3153        <td>1998</td>
3154        <td><br/>Vol. 1427Computer-Aided Verification, CAV'98, pp. 122-134&nbsp;</td>
3155        <td>inproceedings</td>
3156        <td><a href="citeseer.ist.psu.edu/208243.html">URL</a>&nbsp;</td>
3157        <td>&nbsp;</td>
3158</tr>
3159<tr id="bib_hosabettu98decomposing" class="bibtex noshow">
3160<td colspan="7"><b>BibTeX</b>:
3161<pre>
3162@inproceedings{hosabettu98decomposing,
3163  author = {R.~Hosabettu and M.~Srivas and G.~Gopalakrishnan},
3164  title = {Decomposing the Proof of Correctness of Pipelined Microprocessors},
3165  booktitle = {Computer-Aided Verification, CAV'98},
3166  publisher = {Springer-Verlag},
3167  year = {1998},
3168  volume = {1427},
3169  pages = {122--134},
3170  url = {citeseer.ist.psu.edu/208243.html}
3171}
3172</pre></td>
3173</tr>
3174<tr id="huggins98spec" class="entry">
3175        <td>Huggins, J. &amp; Campenhout, D.V.&nbsp;</td>
3176        <td>Specification and Verification of Pipelining in the ARM2 RISC Microprocessor <p class="infolinks">[<a href="javascript:toggleInfo('huggins98spec','bibtex')">BibTeX</a>]</p></td>
3177        <td>1998</td>
3178        <td>ACM Transactions on Design Automation of Electronic Systems<br/>Vol. 3(4), pp. 563-580&nbsp;</td>
3179        <td>article</td>
3180        <td><a href="http://doi.acm.org/10.1145/296333.296345">DOI</a> &nbsp;</td>
3181        <td>&nbsp;</td>
3182</tr>
3183<tr id="bib_huggins98spec" class="bibtex noshow">
3184<td colspan="7"><b>BibTeX</b>:
3185<pre>
3186@article{huggins98spec,
3187  author = {J.K.~Huggins and D.~Van Campenhout},
3188  title = {Specification and Verification of Pipelining in the ARM2 RISC Microprocessor},
3189  journal = {ACM Transactions on Design Automation of Electronic Systems},
3190  publisher = {ACM Press},
3191  year = {1998},
3192  volume = {3},
3193  number = {4},
3194  pages = {563--580},
3195  doi = {http://doi.acm.org/10.1145/296333.296345}
3196}
3197</pre></td>
3198</tr>
3199<tr id="HWA99" class="entry">
3200        <td>Hulgaard, H., Williams, P.F. &amp; Andersen, H.R.&nbsp;</td>
3201        <td>Equivalence Checking of Combinational Circuits using Boolean Expression Diagrams <p class="infolinks">[<a href="javascript:toggleInfo('HWA99','bibtex')">BibTeX</a>]</p></td>
3202        <td>1999</td>
3203        <td>IEEE Transactions of Computer-Aided Design<br/>Vol. 18(7), pp. 903-917&nbsp;</td>
3204        <td>article</td>
3205        <td>&nbsp;</td>
3206        <td>&nbsp;</td>
3207</tr>
3208<tr id="bib_HWA99" class="bibtex noshow">
3209<td colspan="7"><b>BibTeX</b>:
3210<pre>
3211@article{HWA99,
3212  author = {H.~Hulgaard and P.~F.~Williams and H.~R.~Andersen},
3213  title = {Equivalence Checking of Combinational Circuits using Boolean Expression Diagrams},
3214  journal = {IEEE Transactions of Computer-Aided Design},
3215  year = {1999},
3216  volume = {18},
3217  number = {7},
3218  pages = {903-917}
3219}
3220</pre></td>
3221</tr>
3222<tr id="JainKSC05" class="entry">
3223        <td>Jain, H., Kroening, D., Sharygina, N. &amp; Clarke, E.&nbsp;Andrew B. Kahng William H. Joyner Jr., Grant Martin (Ed.)</td>
3224        <td>Word Level Predicate Abstraction and Refinement for Verifying RTL Verilog. <p class="infolinks">[<a href="javascript:toggleInfo('JainKSC05','bibtex')">BibTeX</a>]</p></td>
3225        <td>2005</td>
3226        <td>DAC'05: Proceedings of the 42nd Design Automation Conference, pp. 445-450&nbsp;</td>
3227        <td>inproceedings</td>
3228        <td>&nbsp;</td>
3229        <td>&nbsp;</td>
3230</tr>
3231<tr id="bib_JainKSC05" class="bibtex noshow">
3232<td colspan="7"><b>BibTeX</b>:
3233<pre>
3234@inproceedings{JainKSC05,
3235  author = {Jain, H. and Kroening, D. and Sharygina, N. and Clarke, E.M.},
3236  title = {Word Level Predicate Abstraction and Refinement for Verifying RTL Verilog.},
3237  booktitle = {DAC'05: Proceedings of the 42nd Design Automation Conference},
3238  publisher = {ACM},
3239  year = {2005},
3240  pages = {445-450}
3241}
3242</pre></td>
3243</tr>
3244<tr id="DBLP:journals/tcad/JainKSC08" class="entry">
3245        <td>Jain, H., Kroening, D., Sharygina, N. &amp; Clarke, E.&nbsp;</td>
3246        <td>Word-Level Predicate-Abstraction and Refinement Techniques for Verifying RTL Verilog <p class="infolinks">[<a href="javascript:toggleInfo('DBLP:journals/tcad/JainKSC08','bibtex')">BibTeX</a>]</p></td>
3247        <td>2008</td>
3248        <td>IEEE Transaction on CAD of Integrated Circuits and Systems<br/>Vol. 27(2), pp. 366-379&nbsp;</td>
3249        <td>article</td>
3250        <td>&nbsp;</td>
3251        <td><div class="bibtex_pdf">
3252            <a href="docs/WLPredicateAbstractionRefinment08.pdf">PDF</a>
3253          </div>&nbsp;</td>
3254</tr>
3255<tr id="bib_DBLP:journals/tcad/JainKSC08" class="bibtex noshow">
3256<td colspan="7"><b>BibTeX</b>:
3257<pre>
3258@article{DBLP:journals/tcad/JainKSC08,
3259  author = {H.~Jain and D.~Kroening and N.~Sharygina and E.M.~Clarke},
3260  title = {Word-Level Predicate-Abstraction and Refinement Techniques for Verifying RTL Verilog},
3261  journal = {IEEE Transaction on CAD of Integrated Circuits and Systems},
3262  year = {2008},
3263  volume = {27},
3264  number = {2},
3265  pages = {366-379}
3266}
3267</pre></td>
3268</tr>
3269<tr id="kroening07vcegar" class="entry">
3270        <td>Jain, H., Kroening, D., Sharygina, N. &amp; Clarke, E.&nbsp;</td>
3271        <td>VCEGAR: Verilog CounterExample Guided Abstraction Refinement <p class="infolinks">[<a href="javascript:toggleInfo('kroening07vcegar','bibtex')">BibTeX</a>]</p></td>
3272        <td>2007</td>
3273        <td>TACAS'07: Proceedings of the 13th International Conference on Tools and Algorithms for the Construction and Analysis of Systems&nbsp;</td>
3274        <td>inproceedings</td>
3275        <td>&nbsp;</td>
3276        <td>&nbsp;</td>
3277</tr>
3278<tr id="bib_kroening07vcegar" class="bibtex noshow">
3279<td colspan="7"><b>BibTeX</b>:
3280<pre>
3281@inproceedings{kroening07vcegar,
3282  author = {H.~Jain and D.~Kroening and N.~Sharygina and E.~Clarke},
3283  title = {VCEGAR: Verilog CounterExample Guided Abstraction Refinement},
3284  booktitle = {TACAS'07: Proceedings of the 13th International Conference on Tools and Algorithms for the Construction and Analysis of Systems},
3285  year = {2007},
3286  note = {Accepted paper}
3287}
3288</pre></td>
3289</tr>
3290<tr id="JainNFS97survey" class="entry">
3291        <td>Jain, J., Narayan, A., Fujita, M. &amp; Sangiovanni-Vincentelli, A.&nbsp;</td>
3292        <td>A Survey of Techniques for Formal Verification of Combinational Circuits. <p class="infolinks">[<a href="javascript:toggleInfo('JainNFS97survey','bibtex')">BibTeX</a>]</p></td>
3293        <td>1997</td>
3294        <td>ICCD, pp. 445-454&nbsp;</td>
3295        <td>inproceedings</td>
3296        <td>&nbsp;</td>
3297        <td>&nbsp;</td>
3298</tr>
3299<tr id="bib_JainNFS97survey" class="bibtex noshow">
3300<td colspan="7"><b>BibTeX</b>:
3301<pre>
3302@inproceedings{JainNFS97survey,
3303  author = {J.~Jain and A.~Narayan and M.~Fujita and A.L.~Sangiovanni-Vincentelli},
3304  title = {A Survey of Techniques for Formal Verification of Combinational Circuits.},
3305  booktitle = {ICCD},
3306  year = {1997},
3307  pages = {445-454}
3308}
3309</pre></td>
3310</tr>
3311<tr id="jhala01microarchi" class="entry">
3312        <td>Jhala, R. &amp; McMillan, K.&nbsp;Alain Finkel G&eacute;rard Berry, Hubert Comon (Ed.)</td>
3313        <td>Microarchitecture Verification by Compositional Model Checking. <p class="infolinks">[<a href="javascript:toggleInfo('jhala01microarchi','bibtex')">BibTeX</a>]</p></td>
3314        <td>2001</td>
3315        <td><br/>Vol. 2102CAV'01: Proceedings of the 13th International Conference on Computer Aided Verification, pp. 396-410&nbsp;</td>
3316        <td>inproceedings</td>
3317        <td>&nbsp;</td>
3318        <td>&nbsp;</td>
3319</tr>
3320<tr id="bib_jhala01microarchi" class="bibtex noshow">
3321<td colspan="7"><b>BibTeX</b>:
3322<pre>
3323@inproceedings{jhala01microarchi,
3324  author = {Jhala, R. and McMillan, K.L.},
3325  title = {Microarchitecture Verification by Compositional Model Checking.},
3326  booktitle = {CAV'01: Proceedings of the 13th International Conference on Computer Aided Verification},
3327  publisher = {Springer},
3328  year = {2001},
3329  volume = {2102},
3330  pages = {396-410}
3331}
3332</pre></td>
3333</tr>
3334<tr id="Somenzi04Circuscav" class="entry">
3335        <td>Jin, H., Awedh, M. &amp; Somenzi, F.&nbsp;Rajeev Alur and Doron Peled (Ed.)</td>
3336        <td>CirCUs: A Satisfiability Solver Geared towards Bounded Model Checking <p class="infolinks">[<a href="javascript:toggleInfo('Somenzi04Circuscav','bibtex')">BibTeX</a>]</p></td>
3337        <td>2004</td>
3338        <td><br/>Vol. 3114CAV'04: Proceedings of the 16th International Conference onComputer Aided Verification , pp. 519-522&nbsp;</td>
3339        <td>inproceedings</td>
3340        <td>&nbsp;</td>
3341        <td><div class="bibtex_pdf">
3342            <a href="docs/CirCUsToward.pdf">PDF</a>
3343          </div>&nbsp;</td>
3344</tr>
3345<tr id="bib_Somenzi04Circuscav" class="bibtex noshow">
3346<td colspan="7"><b>BibTeX</b>:
3347<pre>
3348@inproceedings{Somenzi04Circuscav,
3349  author = {HoonSang Jin and Mohammad Awedh and Fabio Somenzi},
3350  title = {CirCUs: A Satisfiability Solver Geared towards Bounded Model Checking},
3351  booktitle = {CAV'04: Proceedings of the 16th International Conference onComputer Aided Verification },
3352  publisher = {Springer},
3353  year = {2004},
3354  volume = {3114},
3355  pages = {519-522}
3356}
3357</pre></td>
3358</tr>
3359<tr id="DBLP:conf/tacas/JinHS05" class="entry">
3360        <td>Jin, H., Han, H. &amp; Somenzi, F.&nbsp;Nicolas Halbwachs and Lenore D. Zuck (Ed.)</td>
3361        <td>Efficient Conflict Analysis for Finding All Satisfying Assignments of a Boolean Circuit <p class="infolinks">[<a href="javascript:toggleInfo('DBLP:conf/tacas/JinHS05','bibtex')">BibTeX</a>]</p></td>
3362        <td>2005</td>
3363        <td><br/>Vol. 3440TACAS'05: Proceedings of 11th International Conference on Tools and Algorithms for the Construction and Analysis of Systems, pp. 287-300&nbsp;</td>
3364        <td>inproceedings</td>
3365        <td>&nbsp;</td>
3366        <td><div class="bibtex_pdf">
3367            <a href="docs/efficientConflict05Jin.pdf">PDF</a>
3368          </div>&nbsp;</td>
3369</tr>
3370<tr id="bib_DBLP:conf/tacas/JinHS05" class="bibtex noshow">
3371<td colspan="7"><b>BibTeX</b>:
3372<pre>
3373@inproceedings{DBLP:conf/tacas/JinHS05,
3374  author = {HoonSang Jin and HyoJung Han and Fabio Somenzi},
3375  title = {Efficient Conflict Analysis for Finding All Satisfying Assignments of a Boolean Circuit},
3376  booktitle = {TACAS'05: Proceedings of 11th International Conference on Tools and Algorithms for the Construction and Analysis of Systems},
3377  publisher = {Springer},
3378  year = {2005},
3379  volume = {3440},
3380  pages = {287-300}
3381}
3382</pre></td>
3383</tr>
3384<tr id="somenzi04Circus" class="entry">
3385        <td>Jin, H. &amp; Somenzi, F.&nbsp;</td>
3386        <td>CirCUs: A Hybrid Satisfiability Solver <p class="infolinks">[<a href="javascript:toggleInfo('somenzi04Circus','bibtex')">BibTeX</a>]</p></td>
3387        <td>2004</td>
3388        <td>SAT'04: The 7th International Conference on Theory and Applications of Satisfiability Testing&nbsp;</td>
3389        <td>inproceedings</td>
3390        <td>&nbsp;</td>
3391        <td>&nbsp;</td>
3392</tr>
3393<tr id="bib_somenzi04Circus" class="bibtex noshow">
3394<td colspan="7"><b>BibTeX</b>:
3395<pre>
3396@inproceedings{somenzi04Circus,
3397  author = {H*.~Jin and F.~Somenzi},
3398  title = {CirCUs: A Hybrid Satisfiability Solver},
3399  booktitle = {SAT'04: The 7th International Conference on Theory and Applications of Satisfiability Testing},
3400  year = {2004}
3401}
3402</pre></td>
3403</tr>
3404<tr id="kalushy93knowledge" class="entry">
3405        <td>Kaluzhny, Y. &amp; Muravitsky, A.Y.&nbsp;</td>
3406        <td>A knowledge representation based on the Belnap's four-valued logic <p class="infolinks">[<a href="javascript:toggleInfo('kalushy93knowledge','bibtex')">BibTeX</a>]</p></td>
3407        <td>1993</td>
3408        <td>Journal of Applied Non-Classical Logics<br/>Vol. 3(2), pp. 189-203&nbsp;</td>
3409        <td>article</td>
3410        <td>&nbsp;</td>
3411        <td><div class="bibtex_pdf">
3412            <a href="docs/kaluzhny93knowledge.pdf">PDF</a>
3413          </div>&nbsp;</td>
3414</tr>
3415<tr id="bib_kalushy93knowledge" class="bibtex noshow">
3416<td colspan="7"><b>BibTeX</b>:
3417<pre>
3418@article{kalushy93knowledge,
3419  author = {Yuri Kaluzhny and Alexei Yu. Muravitsky},
3420  title = {A knowledge representation based on the Belnap's four-valued logic},
3421  journal = {Journal of Applied Non-Classical Logics},
3422  year = {1993},
3423  volume = {3},
3424  number = {2},
3425  pages = {189-203}
3426}
3427</pre></td>
3428</tr>
3429<tr id="park03satunbounded" class="entry">
3430        <td>Kang, H.-J. &amp; Park, I.-C.&nbsp;</td>
3431        <td>SAT-based Unbounded Symbolic Model Checking <p class="infolinks">[<a href="javascript:toggleInfo('park03satunbounded','bibtex')">BibTeX</a>]</p></td>
3432        <td>2003</td>
3433        <td>DAC'03: Proceedings of the 40th conference on Design automation, pp. 840-843&nbsp;</td>
3434        <td>inproceedings</td>
3435        <td><a href="http://doi.acm.org/10.1145/775832.776043">DOI</a> &nbsp;</td>
3436        <td><div class="bibtex_pdf">
3437            <a href="docs/kang03satunbounded.pdf">PDF</a>
3438          </div>&nbsp;</td>
3439</tr>
3440<tr id="bib_park03satunbounded" class="bibtex noshow">
3441<td colspan="7"><b>BibTeX</b>:
3442<pre>
3443@inproceedings{park03satunbounded,
3444  author = {H.-J.~Kang and I.-C.~Park},
3445  title = {SAT-based Unbounded Symbolic Model Checking},
3446  booktitle = {DAC'03: Proceedings of the 40th conference on Design automation},
3447  publisher = {ACM},
3448  year = {2003},
3449  pages = {840--843},
3450  doi = {http://doi.acm.org/10.1145/775832.776043}
3451}
3452</pre></td>
3453</tr>
3454<tr id="Kern99survey" class="entry">
3455        <td>Kern, C. &amp; Greenstreet, M.&nbsp;</td>
3456        <td>Formal Verification in Hardware Design: a Survey <p class="infolinks">[<a href="javascript:toggleInfo('Kern99survey','bibtex')">BibTeX</a>]</p></td>
3457        <td>1999</td>
3458        <td>ACM Transactions on Design Automation of Electronic Systems<br/>Vol. 4(2), pp. 123-193&nbsp;</td>
3459        <td>article</td>
3460        <td><a href="http://doi.acm.org/10.1145/307988.307989">DOI</a> &nbsp;</td>
3461        <td>&nbsp;</td>
3462</tr>
3463<tr id="bib_Kern99survey" class="bibtex noshow">
3464<td colspan="7"><b>BibTeX</b>:
3465<pre>
3466@article{Kern99survey,
3467  author = {C.~Kern and M.R.~Greenstreet},
3468  title = {Formal Verification in Hardware Design: a Survey},
3469  journal = {ACM Transactions on Design Automation of Electronic Systems},
3470  publisher = {ACM Press},
3471  year = {1999},
3472  volume = {4},
3473  number = {2},
3474  pages = {123--193},
3475  doi = {http://doi.acm.org/10.1145/307988.307989}
3476}
3477</pre></td>
3478</tr>
3479<tr id="kleene52introduction" class="entry">
3480        <td>Kleene, S.&nbsp;</td>
3481        <td>Introduction to Metamathematics <p class="infolinks">[<a href="javascript:toggleInfo('kleene52introduction','bibtex')">BibTeX</a>]</p></td>
3482        <td>1952</td>
3483        <td>&nbsp;</td>
3484        <td>book</td>
3485        <td>&nbsp;</td>
3486        <td>&nbsp;</td>
3487</tr>
3488<tr id="bib_kleene52introduction" class="bibtex noshow">
3489<td colspan="7"><b>BibTeX</b>:
3490<pre>
3491@book{kleene52introduction,
3492  author = {Kleene, S.},
3493  title = {Introduction to Metamathematics},
3494  publisher = {North-Holland},
3495  year = {1952}
3496}
3497</pre></td>
3498</tr>
3499<tr id="KLM93" class="entry">
3500        <td>Kolks, T., Lin, B. &amp; Man, H.D.&nbsp;</td>
3501        <td>Sizing and Verification of Communication Buffers for Communicating Processes <p class="infolinks">[<a href="javascript:toggleInfo('KLM93','bibtex')">BibTeX</a>]</p></td>
3502        <td>1993</td>
3503        <td><br/>Vol. 1825Proc. of IEEE International Conference on Computer-Aided Design, pp. 660-664&nbsp;</td>
3504        <td>inproceedings</td>
3505        <td>&nbsp;</td>
3506        <td>&nbsp;</td>
3507</tr>
3508<tr id="bib_KLM93" class="bibtex noshow">
3509<td colspan="7"><b>BibTeX</b>:
3510<pre>
3511@inproceedings{KLM93,
3512  author = {T. Kolks and B. Lin and H. De Man},
3513  title = {Sizing and Verification of Communication Buffers for Communicating Processes},
3514  booktitle = {Proc. of IEEE International Conference on Computer-Aided Design},
3515  year = {1993},
3516  volume = {1825},
3517  pages = {660--664}
3518}
3519</pre></td>
3520</tr>
3521<tr id="kroening01automated" class="entry">
3522        <td>Kroening, D. &amp; Paul, W.&nbsp;</td>
3523        <td>Automated Pipeline Design <p class="infolinks">[<a href="javascript:toggleInfo('kroening01automated','bibtex')">BibTeX</a>]</p></td>
3524        <td>2001</td>
3525        <td>DAC '01: Proceedings of the 38th conference on Design Automation, pp. 810-815&nbsp;</td>
3526        <td>inproceedings</td>
3527        <td><a href="http://doi.acm.org/10.1145/378239.379071">DOI</a> &nbsp;</td>
3528        <td>&nbsp;</td>
3529</tr>
3530<tr id="bib_kroening01automated" class="bibtex noshow">
3531<td colspan="7"><b>BibTeX</b>:
3532<pre>
3533@inproceedings{kroening01automated,
3534  author = {D.~Kroening and W.J.~Paul},
3535  title = {Automated Pipeline Design},
3536  booktitle = {DAC '01: Proceedings of the 38th conference on Design Automation},
3537  publisher = {ACM Press},
3538  year = {2001},
3539  pages = {810--815},
3540  doi = {http://doi.acm.org/10.1145/378239.379071}
3541}
3542</pre></td>
3543</tr>
3544<tr id="kropf99introduction" class="entry">
3545        <td>Kropf, T.&nbsp;</td>
3546        <td>Introduction to Formal Hardware Verification <p class="infolinks">[<a href="javascript:toggleInfo('kropf99introduction','bibtex')">BibTeX</a>]</p></td>
3547        <td>1999</td>
3548        <td>&nbsp;</td>
3549        <td>book</td>
3550        <td>&nbsp;</td>
3551        <td>&nbsp;</td>
3552</tr>
3553<tr id="bib_kropf99introduction" class="bibtex noshow">
3554<td colspan="7"><b>BibTeX</b>:
3555<pre>
3556@book{kropf99introduction,
3557  author = {T.~Kropf},
3558  title = {Introduction to Formal Hardware Verification},
3559  publisher = {Springer Verlag},
3560  year = {1999}
3561}
3562</pre></td>
3563</tr>
3564<tr id="KupfermanG96branching" class="entry">
3565        <td>Kupferman, O. &amp; Grumberg, O.&nbsp;</td>
3566        <td>Branching-Time Temporal Logic and Tree Automata. <p class="infolinks">[<a href="javascript:toggleInfo('KupfermanG96branching','bibtex')">BibTeX</a>]</p></td>
3567        <td>1996</td>
3568        <td>Information and Computation<br/>Vol. 125(1), pp. 62-69&nbsp;</td>
3569        <td>article</td>
3570        <td>&nbsp;</td>
3571        <td><div class="bibtex_pdf">
3572            <a href="docs/branchingand automata.ps">PDF</a>
3573          </div>&nbsp;</td>
3574</tr>
3575<tr id="bib_KupfermanG96branching" class="bibtex noshow">
3576<td colspan="7"><b>BibTeX</b>:
3577<pre>
3578@article{KupfermanG96branching,
3579  author = {O.~Kupferman and O.~Grumberg},
3580  title = {Branching-Time Temporal Logic and Tree Automata.},
3581  journal = {Information and Computation},
3582  year = {1996},
3583  volume = {125},
3584  number = {1},
3585  pages = {62-69}
3586}
3587</pre></td>
3588</tr>
3589<tr id="KupfermanVW00automata" class="entry">
3590        <td>Kupferman, O., Vardi, M. &amp; Wolper, P.&nbsp;</td>
3591        <td>An Automata-Theoretic Approach to Branching-Time Model Checking. <p class="infolinks">[<a href="javascript:toggleInfo('KupfermanVW00automata','bibtex')">BibTeX</a>]</p></td>
3592        <td>2000</td>
3593        <td>Journal of the ACM<br/>Vol. 47(2), pp. 312-360&nbsp;</td>
3594        <td>article</td>
3595        <td>&nbsp;</td>
3596        <td><div class="bibtex_pdf">
3597            <a href="docs/an-automata-theoretic-approach.pdf">PDF</a>
3598          </div>&nbsp;</td>
3599</tr>
3600<tr id="bib_KupfermanVW00automata" class="bibtex noshow">
3601<td colspan="7"><b>BibTeX</b>:
3602<pre>
3603@article{KupfermanVW00automata,
3604  author = {O.~Kupferman and M.Y.~Vardi and P.~Wolper},
3605  title = {An Automata-Theoretic Approach to Branching-Time Model Checking.},
3606  journal = {Journal of the ACM},
3607  year = {2000},
3608  volume = {47},
3609  number = {2},
3610  pages = {312-360}
3611}
3612</pre></td>
3613</tr>
3614<tr id="lamp83" class="entry">
3615        <td>Lamport, L.&nbsp;</td>
3616        <td>Information Processing <p class="infolinks">[<a href="javascript:toggleInfo('lamp83','bibtex')">BibTeX</a>]</p></td>
3617        <td>1983</td>
3618        <td>What good is in temporal logic, pp. 657-668&nbsp;</td>
3619        <td>inproceedings</td>
3620        <td>&nbsp;</td>
3621        <td>&nbsp;</td>
3622</tr>
3623<tr id="bib_lamp83" class="bibtex noshow">
3624<td colspan="7"><b>BibTeX</b>:
3625<pre>
3626@inproceedings{lamp83,
3627  author = {L.~Lamport},
3628  title = {Information Processing},
3629  booktitle = {What good is in temporal logic},
3630  publisher = {Elsevier},
3631  year = {1983},
3632  pages = {657--668}
3633}
3634</pre></td>
3635</tr>
3636<tr id="Lano" class="entry">
3637        <td>Lano, K.&nbsp;</td>
3638        <td>The B Language and Method, A Guide to Practical Formal Development <p class="infolinks">[<a href="javascript:toggleInfo('Lano','bibtex')">BibTeX</a>]</p></td>
3639        <td>1996</td>
3640        <td>&nbsp;</td>
3641        <td>book</td>
3642        <td>&nbsp;</td>
3643        <td>&nbsp;</td>
3644</tr>
3645<tr id="bib_Lano" class="bibtex noshow">
3646<td colspan="7"><b>BibTeX</b>:
3647<pre>
3648@book{Lano,
3649  author = {K.~Lano},
3650  title = {The B Language and Method, A Guide to Practical Formal Development},
3651  publisher = {Springer-Verlag},
3652  year = {1996}
3653}
3654</pre></td>
3655</tr>
3656<tr id="693769" class="entry">
3657        <td>Larsen, K., Steffen, B. &amp; Weise, C.&nbsp;</td>
3658        <td>A Constraint Oriented Proof Methodology Based on Modal Transition Systems <p class="infolinks">[<a href="javascript:toggleInfo('693769','bibtex')">BibTeX</a>]</p></td>
3659        <td>1995</td>
3660        <td>TACAS '95: Proceedings of the First International Workshop on Tools and Algorithms for Construction and Analysis of Systems, pp. 17-40&nbsp;</td>
3661        <td>inproceedings</td>
3662        <td>&nbsp;</td>
3663        <td>&nbsp;</td>
3664</tr>
3665<tr id="bib_693769" class="bibtex noshow">
3666<td colspan="7"><b>BibTeX</b>:
3667<pre>
3668@inproceedings{693769,
3669  author = {K.G~Larsen and B.~Steffen and C.~Weise},
3670  title = {A Constraint Oriented Proof Methodology Based on Modal Transition Systems},
3671  booktitle = {TACAS '95: Proceedings of the First International Workshop on Tools and Algorithms for Construction and Analysis of Systems},
3672  publisher = {Springer-Verlag},
3673  year = {1995},
3674  pages = {17--40}
3675}
3676</pre></td>
3677</tr>
3678<tr id="larsen88modal" class="entry">
3679        <td>Larsen, K.G. &amp; Thomsen, B.&nbsp;</td>
3680        <td>A Modal Process Logic <p class="infolinks">[<a href="javascript:toggleInfo('larsen88modal','bibtex')">BibTeX</a>]</p></td>
3681        <td>1988</td>
3682        <td>Third Annual Symposium on Logic in Computer Science, pp. 203-210&nbsp;</td>
3683        <td>inproceedings</td>
3684        <td>&nbsp;</td>
3685        <td>&nbsp;</td>
3686</tr>
3687<tr id="bib_larsen88modal" class="bibtex noshow">
3688<td colspan="7"><b>BibTeX</b>:
3689<pre>
3690@inproceedings{larsen88modal,
3691  author = {K.~G.~Larsen and B.~Thomsen},
3692  title = {A Modal Process Logic},
3693  booktitle = {Third Annual Symposium on Logic in Computer Science},
3694  publisher = {IEEE Computer Society},
3695  year = {1988},
3696  pages = {203-210}
3697}
3698</pre></td>
3699</tr>
3700<tr id="LiWS05PureSat" class="entry">
3701        <td>Li, B., Wang, C. &amp; Somenzi, F.&nbsp;</td>
3702        <td>Abstraction Refinement in Symbolic Model Checking using Satisfiability as the Only Decision Procedure <p class="infolinks">[<a href="javascript:toggleInfo('LiWS05PureSat','bibtex')">BibTeX</a>]</p></td>
3703        <td>2005</td>
3704        <td>STTT<br/>Vol. 7(2), pp. 143-155&nbsp;</td>
3705        <td>article</td>
3706        <td>&nbsp;</td>
3707        <td><div class="bibtex_pdf">
3708            <a href="docs/Li04PureSatSTTT.pdf">PDF</a>
3709          </div>&nbsp;</td>
3710</tr>
3711<tr id="bib_LiWS05PureSat" class="bibtex noshow">
3712<td colspan="7"><b>BibTeX</b>:
3713<pre>
3714@article{LiWS05PureSat,
3715  author = {B.~Li and C.~Wang and F.~Somenzi},
3716  title = {Abstraction Refinement in Symbolic Model Checking using Satisfiability as the Only Decision Procedure},
3717  journal = {STTT},
3718  year = {2005},
3719  volume = {7},
3720  number = {2},
3721  pages = {143-155}
3722}
3723</pre></td>
3724</tr>
3725<tr id="lin91implicit" class="entry">
3726        <td>Lin, B. &amp; Newton, A.&nbsp;</td>
3727        <td>Implicit Manipulation of Equivalence Classes Using Binary Decision Diagrams <p class="infolinks">[<a href="javascript:toggleInfo('lin91implicit','bibtex')">BibTeX</a>]</p></td>
3728        <td>1991</td>
3729        <td>ICCD '91: Proceedings of the 1991 IEEE International Conference on Computer Design on VLSI in Computer &amp; Processors, pp. 81-85&nbsp;</td>
3730        <td>inproceedings</td>
3731        <td>&nbsp;</td>
3732        <td>&nbsp;</td>
3733</tr>
3734<tr id="bib_lin91implicit" class="bibtex noshow">
3735<td colspan="7"><b>BibTeX</b>:
3736<pre>
3737@inproceedings{lin91implicit,
3738  author = {B.~Lin and A.R.~Newton},
3739  title = {Implicit Manipulation of Equivalence Classes Using Binary Decision Diagrams},
3740  booktitle = {ICCD '91: Proceedings of the 1991 IEEE International Conference on Computer Design on VLSI in Computer &amp; Processors},
3741  publisher = {IEEE Computer Society},
3742  year = {1991},
3743  pages = {81--85}
3744}
3745</pre></td>
3746</tr>
3747<tr id="Loiseaux" class="entry">
3748        <td>Loiseaux, C., Graf, S., Sifakis, J., Bouajjani, A. &amp; Bensalem, S.&nbsp;</td>
3749        <td>Property Preserving Abstractions for the Verification of Concurrent Systems <p class="infolinks">[<a href="javascript:toggleInfo('Loiseaux','bibtex')">BibTeX</a>]</p></td>
3750        <td>1995</td>
3751        <td>Formal Methods in System Design<br/>Vol. 6(1), pp. 11-44&nbsp;</td>
3752        <td>article</td>
3753        <td>&nbsp;</td>
3754        <td>&nbsp;</td>
3755</tr>
3756<tr id="bib_Loiseaux" class="bibtex noshow">
3757<td colspan="7"><b>BibTeX</b>:
3758<pre>
3759@article{Loiseaux,
3760  author = {C.~Loiseaux and S.~Graf and J.~Sifakis and A.~Bouajjani and S.~Bensalem},
3761  title = {Property Preserving Abstractions for the Verification of Concurrent Systems},
3762  journal = {Formal Methods in System Design},
3763  publisher = {Kluwer Academic Publisher},
3764  year = {1995},
3765  volume = {6},
3766  number = {1},
3767  pages = {11--44}
3768}
3769</pre></td>
3770</tr>
3771<tr id="long93thesis" class="entry">
3772        <td>Long, D.E.&nbsp;</td>
3773        <td>Model Checking, Abstraction, and Compositional Verification <p class="infolinks">[<a href="javascript:toggleInfo('long93thesis','bibtex')">BibTeX</a>]</p></td>
3774        <td>1993</td>
3775        <td><i>School</i>: Carnegie Mellon University&nbsp;</td>
3776        <td>phdthesis</td>
3777        <td>&nbsp;</td>
3778        <td><div class="bibtex_pdf">
3779            <a href="docs/long93model.ps.gz">PDF</a>
3780          </div>&nbsp;</td>
3781</tr>
3782<tr id="bib_long93thesis" class="bibtex noshow">
3783<td colspan="7"><b>BibTeX</b>:
3784<pre>
3785@phdthesis{long93thesis,
3786  author = {D.~E.~Long},
3787  title = {Model Checking, Abstraction, and Compositional Verification},
3788  school = {Carnegie Mellon University},
3789  year = {1993}
3790}
3791</pre></td>
3792</tr>
3793<tr id="santo" class="entry">
3794        <td>Malik, S., Wang, A., Brayton, R. &amp; Sangiovanni-Vincentelli, A.&nbsp;</td>
3795        <td>Logic Verification using Binary Decision Diagrams in Logic Synthesis Environment <p class="infolinks">[<a href="javascript:toggleInfo('santo','abstract')">Abstract</a>] [<a href="javascript:toggleInfo('santo','bibtex')">BibTeX</a>]</p></td>
3796        <td>1988</td>
3797        <td>Proceedings of the IEEE International Conference on Computer Aided Design, ICCAD'88, pp. 6-9&nbsp;</td>
3798        <td>inproceedings</td>
3799        <td>&nbsp;</td>
3800        <td>&nbsp;</td>
3801</tr>
3802<tr id="abs_santo" class="abstract noshow">
3803        <td colspan="7"><b>Abstract</b>:  This paper proposes two heuristics for variable ordering based on the topology of the circuit under study. enumerate item One defines the level of a variable or a gate as follows: $level(root)=0$ and $level(f)=max(level(g))+1$, where the $g$'s are the fathers of $f$. The first heuristics consists in indexing the variables according to the decreasing order of their levels. The justification is that the influence of variables high in the circuit must be computed as soon as possible. item Same as the previous heuristics but respecting modules. Modules are treated in the decreasing order of their depths. The depth of a formula being the maximum depth of its variables. enumerate Experimental results are reported, showing that the second heuristics is very good (on the ICSAS'85 benchmark). Lu </td>
3804</tr>
3805<tr id="bib_santo" class="bibtex noshow">
3806<td colspan="7"><b>BibTeX</b>:
3807<pre>
3808@inproceedings{santo,
3809  author = {S.~Malik and A.R.~Wang and R.K~Brayton and A.~Sangiovanni-Vincentelli},
3810  title = {Logic Verification using Binary Decision Diagrams in Logic Synthesis Environment},
3811  booktitle = {Proceedings of the IEEE International Conference on Computer Aided Design, ICCAD'88},
3812  year = {1988},
3813  pages = {6--9},
3814  note = {Santa Clara CA, USA}
3815}
3816</pre></td>
3817</tr>
3818<tr id="manolios00correctness" class="entry">
3819        <td>Manolios, P.&nbsp;</td>
3820        <td>Correctness of Pipelined Machines <p class="infolinks">[<a href="javascript:toggleInfo('manolios00correctness','bibtex')">BibTeX</a>]</p></td>
3821        <td>2000</td>
3822        <td>FMCAD '00: Proceedings of the Third International Conference on Formal Methods in Computer-Aided Design, pp. 161-178&nbsp;</td>
3823        <td>inproceedings</td>
3824        <td><a href="citeseer.ist.psu.edu/426677.html">URL</a>&nbsp;</td>
3825        <td>&nbsp;</td>
3826</tr>
3827<tr id="bib_manolios00correctness" class="bibtex noshow">
3828<td colspan="7"><b>BibTeX</b>:
3829<pre>
3830@inproceedings{manolios00correctness,
3831  author = {P.~Manolios},
3832  title = {Correctness of Pipelined Machines},
3833  booktitle = {FMCAD '00: Proceedings of the Third International Conference on Formal Methods in Computer-Aided Design},
3834  publisher = {Springer-Verlag},
3835  year = {2000},
3836  pages = {161--178},
3837  url = {citeseer.ist.psu.edu/426677.html}
3838}
3839</pre></td>
3840</tr>
3841<tr id="manolios04web" class="entry">
3842        <td>Manolios, P. &amp; Srinivasan, S.&nbsp;</td>
3843        <td>Automatic Verification of Safety and Liveness for XScale-Like Processor Models Using WEB Refinements <p class="infolinks">[<a href="javascript:toggleInfo('manolios04web','bibtex')">BibTeX</a>]</p></td>
3844        <td>2004</td>
3845        <td>DATE '04: Proceedings of the conference on Design, Automation and Test in Europe, pp. 168-174&nbsp;</td>
3846        <td>inproceedings</td>
3847        <td>&nbsp;</td>
3848        <td>&nbsp;</td>
3849</tr>
3850<tr id="bib_manolios04web" class="bibtex noshow">
3851<td colspan="7"><b>BibTeX</b>:
3852<pre>
3853@inproceedings{manolios04web,
3854  author = {P.~Manolios and S.K.~Srinivasan},
3855  title = {Automatic Verification of Safety and Liveness for XScale-Like Processor Models Using WEB Refinements},
3856  booktitle = {DATE '04: Proceedings of the conference on Design, Automation and Test in Europe},
3857  publisher = {IEEE Computer Society},
3858  year = {2004},
3859  pages = {168-174}
3860}
3861</pre></td>
3862</tr>
3863<tr id="DBLP:conf/iccad/ManoliosSV06" class="entry">
3864        <td>Manolios, P., Srinivasan, S.K. &amp; Vroon, D.&nbsp;Soha Hassoun (Ed.)</td>
3865        <td>Automatic memory reductions for RTL model verification <p class="infolinks">[<a href="javascript:toggleInfo('DBLP:conf/iccad/ManoliosSV06','bibtex')">BibTeX</a>]</p></td>
3866        <td>2006</td>
3867        <td>ICCAD, pp. 786-793&nbsp;</td>
3868        <td>inproceedings</td>
3869        <td>&nbsp;</td>
3870        <td><div class="bibtex_pdf">
3871            <a href="docs/AutomaticMemoryReductionforRTL06.pdf">PDF</a>
3872          </div>&nbsp;</td>
3873</tr>
3874<tr id="bib_DBLP:conf/iccad/ManoliosSV06" class="bibtex noshow">
3875<td colspan="7"><b>BibTeX</b>:
3876<pre>
3877@inproceedings{DBLP:conf/iccad/ManoliosSV06,
3878  author = {Panagiotis Manolios and Sudarshan K. Srinivasan and Daron Vroon},
3879  title = {Automatic memory reductions for RTL model verification},
3880  booktitle = {ICCAD},
3881  publisher = {ACM},
3882  year = {2006},
3883  pages = {786-793}
3884}
3885</pre></td>
3886</tr>
3887<tr id="Mariano2002formalization" class="entry">
3888        <td>Mariano, G., Boulanger, J.-L. &amp; Aljer, A.&nbsp;</td>
3889        <td>Formalization of Digital Circuits Using the B Method <p class="infolinks">[<a href="javascript:toggleInfo('Mariano2002formalization','bibtex')">BibTeX</a>]</p></td>
3890        <td>2002</td>
3891        <td>CompRail VIII: 8th International Conference on Computer Aided Design, Manufacture and Operation in the Railway and other Advanced Mass Transit Systems&nbsp;</td>
3892        <td>inproceedings</td>
3893        <td><a href="http://www.wessex.ac.uk/conferences/2002/cr02/">URL</a>&nbsp;</td>
3894        <td>&nbsp;</td>
3895</tr>
3896<tr id="bib_Mariano2002formalization" class="bibtex noshow">
3897<td colspan="7"><b>BibTeX</b>:
3898<pre>
3899@inproceedings{Mariano2002formalization,
3900  author = {G.~Mariano and J-L.~Boulanger and A. Aljer},
3901  title = {Formalization of Digital Circuits Using the B Method},
3902  booktitle = {CompRail VIII: 8th International Conference on Computer Aided Design, Manufacture and Operation in the Railway and other Advanced Mass Transit Systems},
3903  year = {2002},
3904  url = {http://www.wessex.ac.uk/conferences/2002/cr02/}
3905}
3906</pre></td>
3907</tr>
3908<tr id="Silva00Sat" class="entry">
3909        <td>Marques-Silva, Jo a.P. &amp; Sakallah, K.A.&nbsp;</td>
3910        <td>Boolean satisfiability in electronic design automation <p class="infolinks">[<a href="javascript:toggleInfo('Silva00Sat','bibtex')">BibTeX</a>]</p></td>
3911        <td>2000</td>
3912        <td>DAC '00: Proceedings of the 37th Annual Design Automation Conference, pp. 675-680&nbsp;</td>
3913        <td>inproceedings</td>
3914        <td><a href="http://doi.acm.org/10.1145/337292.337611">DOI</a> &nbsp;</td>
3915        <td><div class="bibtex_pdf">
3916            <a href="docs/p675-marques-silva.pdf">PDF</a>
3917          </div>&nbsp;</td>
3918</tr>
3919<tr id="bib_Silva00Sat" class="bibtex noshow">
3920<td colspan="7"><b>BibTeX</b>:
3921<pre>
3922@inproceedings{Silva00Sat,
3923  author = {Marques-Silva, Jo ao P. and Sakallah, Karem A.},
3924  title = {Boolean satisfiability in electronic design automation},
3925  booktitle = {DAC '00: Proceedings of the 37th Annual Design Automation Conference},
3926  publisher = {ACM},
3927  year = {2000},
3928  pages = {675--680},
3929  doi = {http://doi.acm.org/10.1145/337292.337611}
3930}
3931</pre></td>
3932</tr>
3933<tr id="mcmillan98tomasulo" class="entry">
3934        <td>McMillan, K.&nbsp;Moshe Y. Vardi Alan J. Hu (Ed.)</td>
3935        <td>Verification of an Implementation of Tomasulo's Algorithm by Compositional Model Checking. <p class="infolinks">[<a href="javascript:toggleInfo('mcmillan98tomasulo','bibtex')">BibTeX</a>]</p></td>
3936        <td>1998</td>
3937        <td><br/>Vol. 1427CAV'98: Proceddings of the 10th International Conference on Computer Aided Verification, pp. 110-121&nbsp;</td>
3938        <td>inproceedings</td>
3939        <td>&nbsp;</td>
3940        <td>&nbsp;</td>
3941</tr>
3942<tr id="bib_mcmillan98tomasulo" class="bibtex noshow">
3943<td colspan="7"><b>BibTeX</b>:
3944<pre>
3945@inproceedings{mcmillan98tomasulo,
3946  author = {K.L.~McMillan},
3947  title = {Verification of an Implementation of Tomasulo's Algorithm by Compositional Model Checking.},
3948  booktitle = {CAV'98: Proceddings of the 10th International Conference on Computer Aided Verification},
3949  publisher = {Springer},
3950  year = {1998},
3951  volume = {1427},
3952  pages = {110-121}
3953}
3954</pre></td>
3955</tr>
3956<tr id="mcmillan00methodology" class="entry">
3957        <td>McMillan, K.&nbsp;</td>
3958        <td>A Methodology for Hardware Verification Using Compositional Model Checking <p class="infolinks">[<a href="javascript:toggleInfo('mcmillan00methodology','bibtex')">BibTeX</a>]</p></td>
3959        <td>2000</td>
3960        <td>Science of Computer Programming<br/>Vol. 37(1-3), pp. 279-309&nbsp;</td>
3961        <td>article</td>
3962        <td><a href="citeseer.ist.psu.edu/mcmillan99methodology.html">URL</a>&nbsp;</td>
3963        <td><div class="bibtex_pdf">
3964            <a href="docs/mcmillan99methodology.pdf">PDF</a>
3965          </div>&nbsp;</td>
3966</tr>
3967<tr id="bib_mcmillan00methodology" class="bibtex noshow">
3968<td colspan="7"><b>BibTeX</b>:
3969<pre>
3970@article{mcmillan00methodology,
3971  author = {K.L. McMillan},
3972  title = {A Methodology for Hardware Verification Using Compositional Model Checking},
3973  journal = {Science of Computer Programming},
3974  year = {2000},
3975  volume = {37},
3976  number = {1--3},
3977  pages = {279--309},
3978  url = {citeseer.ist.psu.edu/mcmillan99methodology.html}
3979}
3980</pre></td>
3981</tr>
3982<tr id="mcmillanSMV" class="entry">
3983        <td>McMillan, K.&nbsp;</td>
3984        <td>Symbolic Model Checking <p class="infolinks">[<a href="javascript:toggleInfo('mcmillanSMV','bibtex')">BibTeX</a>]</p></td>
3985        <td>1993</td>
3986        <td>&nbsp;</td>
3987        <td>book</td>
3988        <td>&nbsp;</td>
3989        <td>&nbsp;</td>
3990</tr>
3991<tr id="bib_mcmillanSMV" class="bibtex noshow">
3992<td colspan="7"><b>BibTeX</b>:
3993<pre>
3994@book{mcmillanSMV,
3995  author = {K.L.~McMillan},
3996  title = {Symbolic Model Checking},
3997  publisher = {Kluwer Academics Publishers},
3998  year = {1993}
3999}
4000</pre></td>
4001</tr>
4002<tr id="mcmillan02applyingSat" class="entry">
4003        <td>McMillan, K.L.&nbsp;Ed Brinksma and Kim Guldstrand Larsen (Ed.)</td>
4004        <td>Applying SAT Methods in Unbounded Symbolic Model Checking <p class="infolinks">[<a href="javascript:toggleInfo('mcmillan02applyingSat','bibtex')">BibTeX</a>]</p></td>
4005        <td>2002</td>
4006        <td><br/>Vol. 2404CAV'02: Proceedings of the 14th International Conference on Computer Aided vVrification, pp. 250-264&nbsp;</td>
4007        <td>inproceedings</td>
4008        <td>&nbsp;</td>
4009        <td><div class="bibtex_pdf">
4010            <a href="docs/Mcmillan02applyingSat.pdf">PDF</a>
4011          </div>&nbsp;</td>
4012</tr>
4013<tr id="bib_mcmillan02applyingSat" class="bibtex noshow">
4014<td colspan="7"><b>BibTeX</b>:
4015<pre>
4016@inproceedings{mcmillan02applyingSat,
4017  author = {Kenneth L. McMillan},
4018  title = {Applying SAT Methods in Unbounded Symbolic Model Checking},
4019  booktitle = {CAV'02: Proceedings of the 14th International Conference on Computer Aided vVrification},
4020  publisher = {Springer},
4021  year = {2002},
4022  volume = {2404},
4023  pages = {250-264}
4024}
4025</pre></td>
4026</tr>
4027<tr id="DBLP:conf/cav/McMillan97" class="entry">
4028        <td>McMillan, K.L.&nbsp;Orna Grumberg (Ed.)</td>
4029        <td>A Compositional Rule for Hardware Design Refinement. <p class="infolinks">[<a href="javascript:toggleInfo('DBLP:conf/cav/McMillan97','bibtex')">BibTeX</a>]</p></td>
4030        <td>1997</td>
4031        <td><br/>Vol. 1254CAV'97: Proceedings of the 9th International Conference on Computer Aided Verification, pp. 24-35&nbsp;</td>
4032        <td>inproceedings</td>
4033        <td>&nbsp;</td>
4034        <td>&nbsp;</td>
4035</tr>
4036<tr id="bib_DBLP:conf/cav/McMillan97" class="bibtex noshow">
4037<td colspan="7"><b>BibTeX</b>:
4038<pre>
4039@inproceedings{DBLP:conf/cav/McMillan97,
4040  author = {Kenneth L. McMillan},
4041  title = {A Compositional Rule for Hardware Design Refinement.},
4042  booktitle = {CAV'97: Proceedings of the 9th International Conference on Computer Aided Verification},
4043  publisher = {Springer},
4044  year = {1997},
4045  volume = {1254},
4046  pages = {24-35}
4047}
4048</pre></td>
4049</tr>
4050<tr id="memmi:thesis" class="entry">
4051        <td>Memmi, G.&nbsp;</td>
4052        <td>M&eacute;thodes d'analyse des r&eacute;seaux de Petri, r&eacute;seaux &agrave; files et application aux syst&egrave;mes temps-r&eacute;el <p class="infolinks">[<a href="javascript:toggleInfo('memmi:thesis','bibtex')">BibTeX</a>]</p></td>
4053        <td>1983</td>
4054        <td><i>School</i>: Universit&eacute; Paris-6&nbsp;</td>
4055        <td>phdthesis</td>
4056        <td>&nbsp;</td>
4057        <td>&nbsp;</td>
4058</tr>
4059<tr id="bib_memmi:thesis" class="bibtex noshow">
4060<td colspan="7"><b>BibTeX</b>:
4061<pre>
4062@phdthesis{memmi:thesis,
4063  author = {G.~Memmi},
4064  title = {M&eacute;thodes d'analyse des r&eacute;seaux de Petri, r&eacute;seaux &agrave; files et application aux syst&egrave;mes temps-r&eacute;el},
4065  school = {Universit&eacute; Paris-6},
4066  year = {1983}
4067}
4068</pre></td>
4069</tr>
4070<tr id="Mil89" class="entry">
4071        <td>Milner, R.&nbsp;</td>
4072        <td>Communication and Concurrency <p class="infolinks">[<a href="javascript:toggleInfo('Mil89','bibtex')">BibTeX</a>]</p></td>
4073        <td>1989</td>
4074        <td>&nbsp;</td>
4075        <td>book</td>
4076        <td>&nbsp;</td>
4077        <td>&nbsp;</td>
4078</tr>
4079<tr id="bib_Mil89" class="bibtex noshow">
4080<td colspan="7"><b>BibTeX</b>:
4081<pre>
4082@book{Mil89,
4083  author = {R.~Milner},
4084  title = {Communication and Concurrency},
4085  publisher = {Prentice Hall},
4086  year = {1989}
4087}
4088</pre></td>
4089</tr>
4090<tr id="DBLP:conf/ijcai/Milner71" class="entry">
4091        <td>Milner, R.&nbsp;</td>
4092        <td>An Algebraic Definition of Simulation Between<p> Programs. <p class="infolinks">[<a href="javascript:toggleInfo('DBLP:conf/ijcai/Milner71','bibtex')">BibTeX</a>]</p></td>
4093        <td>1971</td>
4094        <td>IJCAI'71: Proceedings of the 2nd International Joint Conference on Artificial Intelligence, pp. 481-489&nbsp;</td>
4095        <td>inproceedings</td>
4096        <td>&nbsp;</td>
4097        <td>&nbsp;</td>
4098</tr>
4099<tr id="bib_DBLP:conf/ijcai/Milner71" class="bibtex noshow">
4100<td colspan="7"><b>BibTeX</b>:
4101<pre>
4102@inproceedings{DBLP:conf/ijcai/Milner71,
4103  author = {R.~Milner},
4104  title = {An Algebraic Definition of Simulation Between<p> Programs.},
4105  booktitle = {IJCAI'71: Proceedings of the 2nd International Joint Conference on Artificial Intelligence},
4106  year = {1971},
4107  pages = {481-489}
4108}
4109</pre></td>
4110</tr>
4111<tr id="minato" class="entry">
4112        <td>Minato, S., Ishiura, N. &amp; Yajima, S.&nbsp;L.J.M Claesen (Ed.)</td>
4113        <td>Shared Binary Decision Diagrams with Attributed Edges for Efficient Boolean Function Manipulation <p class="infolinks">[<a href="javascript:toggleInfo('minato','abstract')">Abstract</a>] [<a href="javascript:toggleInfo('minato','bibtex')">BibTeX</a>]</p></td>
4114        <td>1990</td>
4115        <td>Proceedings of the 27th ACM/IEEE Design Automation Conference, DAC'90, pp. 52-57&nbsp;</td>
4116        <td>inproceedings</td>
4117        <td>&nbsp;</td>
4118        <td>&nbsp;</td>
4119</tr>
4120<tr id="abs_minato" class="abstract noshow">
4121        <td colspan="7"><b>Abstract</b>:  This paper is the first one in which management of BDD nodes via a hash table is proposed (and thus the reduction operation is suppressed). Then, various labelling of edges are discussed: first, the flag $+/-$ already proposed by Billon and Madre teBil87,MB88. Second, another flag so-called input inverter, is proposed. It transforms $ite(x,F,G)$ into $ite(neg x,F,G)=ite(x,G,F)$. Canonicity is maintained by keeping only nodes such that $F<G$ (for say the memory order). Third, labelling edges with shifts between variable indices is proposed. Fourth, it is proposed to encode small BDD's (with only two variables) by means of a single word. Then, a variable ordering heuristics is proposed. It consists in propagating a flow from the outputs to the inputs of the circuits and labelling inputs by the order of their flow values. The flow at each input is $1.0$, the flow at a gate is the sum of its in-flow. Its is shared equally by its parents. Then, A way to manage <em>don't care</em> parts of circuits is proposed. It consists in using a second variable $neg x_1 wedge neg x_2 rightarrow neg x$, $x_1 wedge x_2 rightarrow x$, otherwise <em>don't care</em>. Finally, experimental results are reported. </td>
4122</tr>
4123<tr id="bib_minato" class="bibtex noshow">
4124<td colspan="7"><b>BibTeX</b>:
4125<pre>
4126@inproceedings{minato,
4127  author = {S.~Minato and N.~Ishiura and S.~Yajima},
4128  title = {Shared Binary Decision Diagrams with Attributed Edges for Efficient Boolean Function Manipulation},
4129  booktitle = {Proceedings of the 27th ACM/IEEE Design Automation Conference, DAC'90},
4130  year = {1990},
4131  pages = {52--57}
4132}
4133</pre></td>
4134</tr>
4135<tr id="MC99" class="entry">
4136        <td>Miner, A. &amp; Ciardo, G.&nbsp;</td>
4137        <td>Efficient Reachability Set Generation and Storage Using Decision Diagrams <p class="infolinks">[<a href="javascript:toggleInfo('MC99','bibtex')">BibTeX</a>]</p></td>
4138        <td>1999</td>
4139        <td><br/>Vol. 1639Proc. of ICATPN'99, pp. 6-25&nbsp;</td>
4140        <td>inproceedings</td>
4141        <td>&nbsp;</td>
4142        <td>&nbsp;</td>
4143</tr>
4144<tr id="bib_MC99" class="bibtex noshow">
4145<td colspan="7"><b>BibTeX</b>:
4146<pre>
4147@inproceedings{MC99,
4148  author = {A.S. Miner and G. Ciardo},
4149  title = {Efficient Reachability Set Generation and Storage Using Decision Diagrams},
4150  booktitle = {Proc. of ICATPN'99},
4151  publisher = {Springer Verlag},
4152  year = {1999},
4153  volume = {1639},
4154  pages = {6--25}
4155}
4156</pre></td>
4157</tr>
4158<tr id="Miskov-ZivanovM06" class="entry">
4159        <td>Miskov-Zivanov, N. &amp; Marculescu, D.&nbsp;</td>
4160        <td>Circuit Reliability Analysis Using Symbolic Techniques <p class="infolinks">[<a href="javascript:toggleInfo('Miskov-ZivanovM06','bibtex')">BibTeX</a>]</p></td>
4161        <td>2006</td>
4162        <td>IEEE Transaction on CAD of Integrated Circuits and Systems<br/>Vol. 25(12), pp. 2638-2649&nbsp;</td>
4163        <td>article</td>
4164        <td>&nbsp;</td>
4165        <td>&nbsp;</td>
4166</tr>
4167<tr id="bib_Miskov-ZivanovM06" class="bibtex noshow">
4168<td colspan="7"><b>BibTeX</b>:
4169<pre>
4170@article{Miskov-ZivanovM06,
4171  author = {N.~Miskov-Zivanov and D.~Marculescu},
4172  title = {Circuit Reliability Analysis Using Symbolic Techniques},
4173  journal = {IEEE Transaction on CAD of Integrated Circuits and Systems},
4174  year = {2006},
4175  volume = {25},
4176  number = {12},
4177  pages = {2638-2649}
4178}
4179</pre></td>
4180</tr>
4181<tr id="mooremachine" class="entry">
4182        <td>Moore, E.&nbsp;</td>
4183        <td>Gedanken-experiments on Sequential Machines <p class="infolinks">[<a href="javascript:toggleInfo('mooremachine','bibtex')">BibTeX</a>]</p></td>
4184        <td>1956</td>
4185        <td>Automata Studies, Annals of Mathematical Studies<br/>Vol. 34, pp. 129 – 153&nbsp;</td>
4186        <td>article</td>
4187        <td>&nbsp;</td>
4188        <td>&nbsp;</td>
4189</tr>
4190<tr id="bib_mooremachine" class="bibtex noshow">
4191<td colspan="7"><b>BibTeX</b>:
4192<pre>
4193@article{mooremachine,
4194  author = {E.F.~Moore},
4195  title = {Gedanken-experiments on Sequential Machines},
4196  journal = {Automata Studies, Annals of Mathematical Studies},
4197  year = {1956},
4198  volume = {34},
4199  pages = {129 – 153}
4200}
4201</pre></td>
4202</tr>
4203<tr id="Morin-AlloryB06" class="entry">
4204        <td>Morin-Allory, K. &amp; Borrione, D.&nbsp;Georges G. E. Gielen (Ed.)</td>
4205        <td>Proven Correct Monitors from PSL Specifications. <p class="infolinks">[<a href="javascript:toggleInfo('Morin-AlloryB06','bibtex')">BibTeX</a>]</p></td>
4206        <td>2006</td>
4207        <td>DATE'06: Proceedings of the Conference on Design, Automation and Test in Europe, pp. 1246-1251&nbsp;</td>
4208        <td>inproceedings</td>
4209        <td>&nbsp;</td>
4210        <td>&nbsp;</td>
4211</tr>
4212<tr id="bib_Morin-AlloryB06" class="bibtex noshow">
4213<td colspan="7"><b>BibTeX</b>:
4214<pre>
4215@inproceedings{Morin-AlloryB06,
4216  author = {K.~Morin-Allory and D.~Borrione},
4217  title = {Proven Correct Monitors from PSL Specifications.},
4218  booktitle = {DATE'06: Proceedings of the Conference on Design, Automation and Test in Europe},
4219  publisher = {European Design and Automation Association, Leuven, Belgium},
4220  year = {2006},
4221  pages = {1246-1251}
4222}
4223</pre></td>
4224</tr>
4225<tr id="DBLP:conf/dac/MoskewiczMZZM01" class="entry">
4226        <td>Moskewicz, M., Madigan, C., Zhao, Y., Zhang, L. &amp; Malik, S.&nbsp;</td>
4227        <td>Chaff: Engineering an Efficient SAT Solver <p class="infolinks">[<a href="javascript:toggleInfo('DBLP:conf/dac/MoskewiczMZZM01','bibtex')">BibTeX</a>]</p></td>
4228        <td>2001</td>
4229        <td>DAC'01: Proceedings of the 38th Design Automation Conference, pp. 530-535&nbsp;</td>
4230        <td>inproceedings</td>
4231        <td>&nbsp;</td>
4232        <td><div class="bibtex_pdf">
4233            <a href="docs/4 - moskewicz01chaff.pdf">PDF</a>
4234          </div>&nbsp;</td>
4235</tr>
4236<tr id="bib_DBLP:conf/dac/MoskewiczMZZM01" class="bibtex noshow">
4237<td colspan="7"><b>BibTeX</b>:
4238<pre>
4239@inproceedings{DBLP:conf/dac/MoskewiczMZZM01,
4240  author = {M.W.~Moskewicz and C.F.~Madigan and Y.~Zhao and L.~Zhang and S.~Malik},
4241  title = {Chaff: Engineering an Efficient SAT Solver},
4242  booktitle = {DAC'01: Proceedings of the 38th Design Automation Conference},
4243  publisher = {ACM},
4244  year = {2001},
4245  pages = {530-535}
4246}
4247</pre></td>
4248</tr>
4249<tr id="DBLP:journals/tc/MoundanosAH98" class="entry">
4250        <td>Moundanos, D., Abraham, J. &amp; Hoskote, Y.&nbsp;</td>
4251        <td>Abstraction Techniques for Validation Coverage Analysis and Test Generation <p class="infolinks">[<a href="javascript:toggleInfo('DBLP:journals/tc/MoundanosAH98','bibtex')">BibTeX</a>]</p></td>
4252        <td>1998</td>
4253        <td>IEEE Trans. Computers<br/>Vol. 47(1), pp. 2-14&nbsp;</td>
4254        <td>article</td>
4255        <td>&nbsp;</td>
4256        <td>&nbsp;</td>
4257</tr>
4258<tr id="bib_DBLP:journals/tc/MoundanosAH98" class="bibtex noshow">
4259<td colspan="7"><b>BibTeX</b>:
4260<pre>
4261@article{DBLP:journals/tc/MoundanosAH98,
4262  author = {D.~Moundanos and J.A.~Abraham and Y.V.~Hoskote},
4263  title = {Abstraction Techniques for Validation Coverage Analysis and Test Generation},
4264  journal = {IEEE Trans. Computers},
4265  year = {1998},
4266  volume = {47},
4267  number = {1},
4268  pages = {2-14}
4269}
4270</pre></td>
4271</tr>
4272<tr id="DBLP:conf/sbmf/MouraB09" class="entry">
4273        <td>de Moura, L.M. &amp; Bj&oslash;rner, N.&nbsp;Marcel Vinicius Medeiros Oliveira and Jim Woodcock (Ed.)</td>
4274        <td>Satisfiability Modulo Theories: An Appetizer <p class="infolinks">[<a href="javascript:toggleInfo('DBLP:conf/sbmf/MouraB09','bibtex')">BibTeX</a>]</p></td>
4275        <td>2009</td>
4276        <td><br/>Vol. 5902SBMF, pp. 23-36&nbsp;</td>
4277        <td>inproceedings</td>
4278        <td>&nbsp;</td>
4279        <td>&nbsp;</td>
4280</tr>
4281<tr id="bib_DBLP:conf/sbmf/MouraB09" class="bibtex noshow">
4282<td colspan="7"><b>BibTeX</b>:
4283<pre>
4284@inproceedings{DBLP:conf/sbmf/MouraB09,
4285  author = {Leonardo Mendon&ccedil;a de Moura and Nikolaj Bj&oslash;rner},
4286  title = {Satisfiability Modulo Theories: An Appetizer},
4287  booktitle = {SBMF},
4288  publisher = {Springer},
4289  year = {2009},
4290  volume = {5902},
4291  pages = {23-36}
4292}
4293</pre></td>
4294</tr>
4295<tr id="DBLP:conf/tacas/MouraB08" class="entry">
4296        <td>de Moura, L.M. &amp; Bj&oslash;rner, N.&nbsp;C. R. Ramakrishnan and Jakob Rehof (Ed.)</td>
4297        <td>Z3: An Efficient SMT Solver <p class="infolinks">[<a href="javascript:toggleInfo('DBLP:conf/tacas/MouraB08','bibtex')">BibTeX</a>]</p></td>
4298        <td>2008</td>
4299        <td><br/>Vol. 4963TACAS, pp. 337-340&nbsp;</td>
4300        <td>inproceedings</td>
4301        <td>&nbsp;</td>
4302        <td>&nbsp;</td>
4303</tr>
4304<tr id="bib_DBLP:conf/tacas/MouraB08" class="bibtex noshow">
4305<td colspan="7"><b>BibTeX</b>:
4306<pre>
4307@inproceedings{DBLP:conf/tacas/MouraB08,
4308  author = {Leonardo Mendon&ccedil;a de Moura and Nikolaj Bj&oslash;rner},
4309  title = {Z3: An Efficient SMT Solver},
4310  booktitle = {TACAS},
4311  publisher = {Springer},
4312  year = {2008},
4313  volume = {4963},
4314  pages = {337-340}
4315}
4316</pre></td>
4317</tr>
4318<tr id="moy06lussy" class="entry">
4319        <td>Moy, M., Maraninchi, F. &amp; Maillet, L.&nbsp;</td>
4320        <td>LusSy: An open tool for the analysis of systems-on-a-chip at the transaction level <p class="infolinks">[<a href="javascript:toggleInfo('moy06lussy','bibtex')">BibTeX</a>]</p></td>
4321        <td>2006</td>
4322        <td>Design Automation for Embedded Systems<br/>Vol. 10(2-3), pp. 73-104&nbsp;</td>
4323        <td>article</td>
4324        <td><a href="http://dx.doi.org/10.1007/s10617-006-9044-6">DOI</a> &nbsp;</td>
4325        <td>&nbsp;</td>
4326</tr>
4327<tr id="bib_moy06lussy" class="bibtex noshow">
4328<td colspan="7"><b>BibTeX</b>:
4329<pre>
4330@article{moy06lussy,
4331  author = {M.~Moy and F.~Maraninchi and L.~Maillet},
4332  title = {LusSy: An open tool for the analysis of systems-on-a-chip at the transaction level},
4333  journal = {Design Automation for Embedded Systems},
4334  year = {2006},
4335  volume = {10},
4336  number = {2-3},
4337  pages = {73--104},
4338  doi = {http://dx.doi.org/10.1007/s10617-006-9044-6}
4339}
4340</pre></td>
4341</tr>
4342<tr id="namjoshi97simple" class="entry">
4343        <td>Namjoshi, K.&nbsp;</td>
4344        <td>A Simple Characterization of Stuttering Bisimulation <p class="infolinks">[<a href="javascript:toggleInfo('namjoshi97simple','bibtex')">BibTeX</a>]</p></td>
4345        <td>1997</td>
4346        <td>LNCS, Proceedings of the 17th Conference on Foundations of Software Technology an Theoretical Computer Science<br/>Vol. 1346, pp. 284-296&nbsp;</td>
4347        <td>article</td>
4348        <td><a href="citeseer.ist.psu.edu/namjoshi97simple.html">URL</a>&nbsp;</td>
4349        <td>&nbsp;</td>
4350</tr>
4351<tr id="bib_namjoshi97simple" class="bibtex noshow">
4352<td colspan="7"><b>BibTeX</b>:
4353<pre>
4354@article{namjoshi97simple,
4355  author = {K.S.~Namjoshi},
4356  title = {A Simple Characterization of Stuttering Bisimulation},
4357  journal = {LNCS, Proceedings of the 17th Conference on Foundations of Software Technology an Theoretical Computer Science},
4358  year = {1997},
4359  volume = {1346},
4360  pages = {284--296},
4361  url = {citeseer.ist.psu.edu/namjoshi97simple.html}
4362}
4363</pre></td>
4364</tr>
4365<tr id="DBLP:conf/cav/Namjoshi03" class="entry">
4366        <td>Namjoshi, K.S.&nbsp;Warren A. Hunt Jr. and Fabio Somenzi (Ed.)</td>
4367        <td>Abstraction for Branching Time Properties. <p class="infolinks">[<a href="javascript:toggleInfo('DBLP:conf/cav/Namjoshi03','bibtex')">BibTeX</a>]</p></td>
4368        <td>2003</td>
4369        <td><br/>Vol. 2725CAV, pp. 288-300&nbsp;</td>
4370        <td>inproceedings</td>
4371        <td>&nbsp;</td>
4372        <td><div class="bibtex_pdf">
4373            <a href="docs/abstractforbtl.pdf">PDF</a>
4374          </div>&nbsp;</td>
4375</tr>
4376<tr id="bib_DBLP:conf/cav/Namjoshi03" class="bibtex noshow">
4377<td colspan="7"><b>BibTeX</b>:
4378<pre>
4379@inproceedings{DBLP:conf/cav/Namjoshi03,
4380  author = {Kedar S. Namjoshi},
4381  title = {Abstraction for Branching Time Properties.},
4382  booktitle = {CAV},
4383  publisher = {Springer},
4384  year = {2003},
4385  volume = {2725},
4386  pages = {288-300}
4387}
4388</pre></td>
4389</tr>
4390<tr id="namjoshiK00syntactic" class="entry">
4391        <td>Namjoshi, K.S. &amp; Kurshan, R.P.&nbsp;</td>
4392        <td>Syntactic Program Transformations for Automatic Abstraction <p class="infolinks">[<a href="javascript:toggleInfo('namjoshiK00syntactic','bibtex')">BibTeX</a>]</p></td>
4393        <td>2000</td>
4394        <td><br/>Vol. 1855Proceedings of the 12th International Conference on Computer Aided Verification, pp. 435-449&nbsp;</td>
4395        <td>inproceedings</td>
4396        <td>&nbsp;</td>
4397        <td><div class="bibtex_pdf">
4398            <a href="docs/auto_abstra.ps">PDF</a>
4399          </div>&nbsp;</td>
4400</tr>
4401<tr id="bib_namjoshiK00syntactic" class="bibtex noshow">
4402<td colspan="7"><b>BibTeX</b>:
4403<pre>
4404@inproceedings{namjoshiK00syntactic,
4405  author = {K.~S.~Namjoshi and R.~P.~Kurshan},
4406  title = {Syntactic Program Transformations for Automatic Abstraction},
4407  booktitle = {Proceedings of the 12th International Conference on Computer Aided Verification},
4408  publisher = {Springer-Verlag},
4409  year = {2000},
4410  volume = {1855},
4411  pages = {435--449}
4412}
4413</pre></td>
4414</tr>
4415<tr id="DBLP:conf/date/NanshiS08" class="entry">
4416        <td>Nanshi, K. &amp; Somenzi, F.&nbsp;</td>
4417        <td>Improved Visibility in One-to-Many Trace Concretization <p class="infolinks">[<a href="javascript:toggleInfo('DBLP:conf/date/NanshiS08','bibtex')">BibTeX</a>]</p></td>
4418        <td>2008</td>
4419        <td>DATE, pp. 819-824&nbsp;</td>
4420        <td>inproceedings</td>
4421        <td>&nbsp;</td>
4422        <td>&nbsp;</td>
4423</tr>
4424<tr id="bib_DBLP:conf/date/NanshiS08" class="bibtex noshow">
4425<td colspan="7"><b>BibTeX</b>:
4426<pre>
4427@inproceedings{DBLP:conf/date/NanshiS08,
4428  author = {K.~Nanshi and F.~Somenzi},
4429  title = {Improved Visibility in One-to-Many Trace Concretization},
4430  booktitle = {DATE},
4431  year = {2008},
4432  pages = {819-824}
4433}
4434</pre></td>
4435</tr>
4436<tr id="DBLP:conf/dac/NanshiS06" class="entry">
4437        <td>Nanshi, K. &amp; Somenzi, F.&nbsp;Ellen Sentovich (Ed.)</td>
4438        <td>Guiding simulation with increasingly refined abstract traces <p class="infolinks">[<a href="javascript:toggleInfo('DBLP:conf/dac/NanshiS06','bibtex')">BibTeX</a>]</p></td>
4439        <td>2006</td>
4440        <td>DAC, pp. 737-742&nbsp;</td>
4441        <td>inproceedings</td>
4442        <td>&nbsp;</td>
4443        <td>&nbsp;</td>
4444</tr>
4445<tr id="bib_DBLP:conf/dac/NanshiS06" class="bibtex noshow">
4446<td colspan="7"><b>BibTeX</b>:
4447<pre>
4448@inproceedings{DBLP:conf/dac/NanshiS06,
4449  author = {K.~Nanshi and F.~Somenzi},
4450  title = {Guiding simulation with increasingly refined abstract traces},
4451  booktitle = {DAC},
4452  publisher = {ACM},
4453  year = {2006},
4454  pages = {737-742}
4455}
4456</pre></td>
4457</tr>
4458<tr id="nejati05stutering" class="entry">
4459        <td>Nejati, S., Gurfinkel, A. &amp; Chechik, M.&nbsp;Bernhard K. Aichernig and Bernhard Beckert (Ed.)</td>
4460        <td>Stuttering Abstraction for Model Checking <p class="infolinks">[<a href="javascript:toggleInfo('nejati05stutering','bibtex')">BibTeX</a>]</p></td>
4461        <td>2005</td>
4462        <td>SEFM, pp. 311-320&nbsp;</td>
4463        <td>inproceedings</td>
4464        <td>&nbsp;</td>
4465        <td><div class="bibtex_pdf">
4466            <a href="docs/nejati05.pdf">PDF</a>
4467          </div>&nbsp;</td>
4468</tr>
4469<tr id="bib_nejati05stutering" class="bibtex noshow">
4470<td colspan="7"><b>BibTeX</b>:
4471<pre>
4472@inproceedings{nejati05stutering,
4473  author = {Shiva Nejati and Arie Gurfinkel and Marsha Chechik},
4474  title = {Stuttering Abstraction for Model Checking},
4475  booktitle = {SEFM},
4476  publisher = {IEEE Computer Society},
4477  year = {2005},
4478  pages = {311-320}
4479}
4480</pre></td>
4481</tr>
4482<tr id="nicolaV95" class="entry">
4483        <td>Nicola, R.D. &amp; Vaandrager, F.&nbsp;</td>
4484        <td>Three Logics for Branching Bisimulation. <p class="infolinks">[<a href="javascript:toggleInfo('nicolaV95','bibtex')">BibTeX</a>]</p></td>
4485        <td>1995</td>
4486        <td>Journal of the ACM<br/>Vol. 42(2), pp. 458-487&nbsp;</td>
4487        <td>article</td>
4488        <td>&nbsp;</td>
4489        <td>&nbsp;</td>
4490</tr>
4491<tr id="bib_nicolaV95" class="bibtex noshow">
4492<td colspan="7"><b>BibTeX</b>:
4493<pre>
4494@article{nicolaV95,
4495  author = {R.~De~Nicola and F.W.~Vaandrager},
4496  title = {Three Logics for Branching Bisimulation.},
4497  journal = {Journal of the ACM},
4498  year = {1995},
4499  volume = {42},
4500  number = {2},
4501  pages = {458-487}
4502}
4503</pre></td>
4504</tr>
4505<tr id="VCI_spec" class="entry">
4506        <td>On-Chip Bus Development Working Group&nbsp;</td>
4507        <td>Virtual Component Interface Standard (VCI). <p class="infolinks">[<a href="javascript:toggleInfo('VCI_spec','bibtex')">BibTeX</a>]</p></td>
4508        <td>2000</td>
4509        <td><br/>Vol. version 2&nbsp;</td>
4510        <td>manual</td>
4511        <td>&nbsp;</td>
4512        <td>&nbsp;</td>
4513</tr>
4514<tr id="bib_VCI_spec" class="bibtex noshow">
4515<td colspan="7"><b>BibTeX</b>:
4516<pre>
4517@manual{VCI_spec,
4518  author = {On-Chip Bus Development Working Group},
4519  title = {Virtual Component Interface Standard (VCI).},
4520  year = {2000},
4521  volume = {version 2}
4522}
4523</pre></td>
4524</tr>
4525<tr id="PI_proto" class="entry">
4526        <td>Open Microprocessors System Initiatives&nbsp;</td>
4527        <td>OMI324: PI-Bus Standard Specification <p class="infolinks">[<a href="javascript:toggleInfo('PI_proto','bibtex')">BibTeX</a>]</p></td>
4528        <td>1994</td>
4529        <td>&nbsp;</td>
4530        <td>manual</td>
4531        <td>&nbsp;</td>
4532        <td><div class="bibtex_pdf">
4533            <a href="docs/Pidoc31.pdf">PDF</a>
4534          </div>&nbsp;</td>
4535</tr>
4536<tr id="bib_PI_proto" class="bibtex noshow">
4537<td colspan="7"><b>BibTeX</b>:
4538<pre>
4539@manual{PI_proto,
4540  author = {Open Microprocessors System Initiatives},
4541  title = {OMI324: PI-Bus Standard Specification},
4542  year = {1994}
4543}
4544</pre></td>
4545</tr>
4546<tr id="specamba03" class="entry">
4547        <td>Ossima Kh&eacute;ba, J.&nbsp;</td>
4548        <td>Sp&eacute;cification des Wrappers AHB/VCI <p class="infolinks">[<a href="javascript:toggleInfo('specamba03','bibtex')">BibTeX</a>]</p></td>
4549        <td>2003</td>
4550        <td><i>School</i>: Universit&eacute;e Pierre et Marie Curie&nbsp;</td>
4551        <td>techreport</td>
4552        <td>&nbsp;</td>
4553        <td>&nbsp;</td>
4554</tr>
4555<tr id="bib_specamba03" class="bibtex noshow">
4556<td colspan="7"><b>BibTeX</b>:
4557<pre>
4558@techreport{specamba03,
4559  author = {J.~Ossima Kh&eacute;ba},
4560  title = {Sp&eacute;cification des Wrappers AHB/VCI},
4561  school = {Universit&eacute;e Pierre et Marie Curie},
4562  year = {2003}
4563}
4564</pre></td>
4565</tr>
4566<tr id="joel02" class="entry">
4567        <td>Ossima Kh&eacute;ba, J.&nbsp;</td>
4568        <td>Les Wrappers PI/VCI et Etude de Faisabilit&eacute; des Wrappers AMBA/VCI <p class="infolinks">[<a href="javascript:toggleInfo('joel02','bibtex')">BibTeX</a>]</p></td>
4569        <td>2002</td>
4570        <td><i>School</i>: Universit&eacute;e Pierre et Marie Curie&nbsp;</td>
4571        <td>techreport</td>
4572        <td>&nbsp;</td>
4573        <td>&nbsp;</td>
4574</tr>
4575<tr id="bib_joel02" class="bibtex noshow">
4576<td colspan="7"><b>BibTeX</b>:
4577<pre>
4578@techreport{joel02,
4579  author = {J.~Ossima Kh&eacute;ba},
4580  title = {Les Wrappers PI/VCI et Etude de Faisabilit&eacute; des Wrappers AMBA/VCI},
4581  school = {Universit&eacute;e Pierre et Marie Curie},
4582  year = {2002}
4583}
4584</pre></td>
4585</tr>
4586<tr id="cade92-pvs" class="entry">
4587        <td>Owre, S.., Rushby, J.. M.. &amp; Shankar, N..&nbsp;Deepak Kapur (Ed.)</td>
4588        <td>PVS: A Prototype Verification System <p class="infolinks">[<a href="javascript:toggleInfo('cade92-pvs','bibtex')">BibTeX</a>]</p></td>
4589        <td>1992</td>
4590        <td><br/>Vol. 60711th International Conference on Automated Deduction (CADE), pp. 748-752&nbsp;</td>
4591        <td>inproceedings</td>
4592        <td><a href="http://www.csl.sri.com/papers/cade92-pvs/">URL</a>&nbsp;</td>
4593        <td>&nbsp;</td>
4594</tr>
4595<tr id="bib_cade92-pvs" class="bibtex noshow">
4596<td colspan="7"><b>BibTeX</b>:
4597<pre>
4598@inproceedings{cade92-pvs,
4599  author = {S. Owre and J. M. Rushby and and N. Shankar},
4600  title = {PVS: A Prototype Verification System},
4601  booktitle = {11th International Conference on Automated Deduction (CADE)},
4602  publisher = {Springer-Verlag},
4603  year = {1992},
4604  volume = {607},
4605  pages = {748--752},
4606  url = {http://www.csl.sri.com/papers/cade92-pvs/}
4607}
4608</pre></td>
4609</tr>
4610<tr id="DBLP:conf/tcs/Park81" class="entry">
4611        <td>Park, D.&nbsp;Peter Deussen (Ed.)</td>
4612        <td>Concurrency and Automata on Infinite Sequences. <p class="infolinks">[<a href="javascript:toggleInfo('DBLP:conf/tcs/Park81','bibtex')">BibTeX</a>]</p></td>
4613        <td>1981</td>
4614        <td><br/>Vol. 104Proceedings of the 5th GI-Conference on Theoretical Computer Science, pp. 167-183&nbsp;</td>
4615        <td>inproceedings</td>
4616        <td>&nbsp;</td>
4617        <td>&nbsp;</td>
4618</tr>
4619<tr id="bib_DBLP:conf/tcs/Park81" class="bibtex noshow">
4620<td colspan="7"><b>BibTeX</b>:
4621<pre>
4622@inproceedings{DBLP:conf/tcs/Park81,
4623  author = {D.~Park},
4624  title = {Concurrency and Automata on Infinite Sequences.},
4625  booktitle = {Proceedings of the 5th GI-Conference on Theoretical Computer Science},
4626  publisher = {Springer},
4627  year = {1981},
4628  volume = {104},
4629  pages = {167-183}
4630}
4631</pre></td>
4632</tr>
4633<tr id="pasareanu99assume" class="entry">
4634        <td>Pasareanu, C., Dwyer, M. &amp; Huth, M.&nbsp;</td>
4635        <td>Assume-Guarantee Model Checking of Software: A Comparative Case Study <p class="infolinks">[<a href="javascript:toggleInfo('pasareanu99assume','bibtex')">BibTeX</a>]</p></td>
4636        <td>1999</td>
4637        <td>Proceedings of the 5th and 6th International SPIN Workshops on Theoretical and Practical Aspects of SPIN Model Checking, pp. 168-183&nbsp;</td>
4638        <td>inproceedings</td>
4639        <td>&nbsp;</td>
4640        <td>&nbsp;</td>
4641</tr>
4642<tr id="bib_pasareanu99assume" class="bibtex noshow">
4643<td colspan="7"><b>BibTeX</b>:
4644<pre>
4645@inproceedings{pasareanu99assume,
4646  author = {C.S.~Pasareanu and M.B.~Dwyer and M.~Huth},
4647  title = {Assume-Guarantee Model Checking of Software: A Comparative Case Study},
4648  booktitle = {Proceedings of the 5th and 6th International SPIN Workshops on Theoretical and Practical Aspects of SPIN Model Checking},
4649  publisher = {Springer-Verlag},
4650  year = {1999},
4651  pages = {168--183}
4652}
4653</pre></td>
4654</tr>
4655<tr id="passerone02convertibility" class="entry">
4656        <td>Passerone, R., de Alfaro, L., Henzinger, T. &amp; Sangiovanni-Vincentelli, A.&nbsp;</td>
4657        <td>Convertibility Verification and Converter Synthesis: Two Faces of The Same Coin <p class="infolinks">[<a href="javascript:toggleInfo('passerone02convertibility','bibtex')">BibTeX</a>]</p></td>
4658        <td>2002</td>
4659        <td>ICCAD '02: Proceedings of the 2002 IEEE/ACM International Conference on Computer-Aided Design, pp. 132-139&nbsp;</td>
4660        <td>inproceedings</td>
4661        <td><a href="http://doi.acm.org/10.1145/774572.774592">DOI</a> &nbsp;</td>
4662        <td><div class="bibtex_pdf">
4663            <a href="docs/samecoin.pdf">PDF</a>
4664          </div>&nbsp;</td>
4665</tr>
4666<tr id="bib_passerone02convertibility" class="bibtex noshow">
4667<td colspan="7"><b>BibTeX</b>:
4668<pre>
4669@inproceedings{passerone02convertibility,
4670  author = {R.~Passerone and L.~de Alfaro and T.A.~Henzinger and A.L.~Sangiovanni-Vincentelli},
4671  title = {Convertibility Verification and Converter Synthesis: Two Faces of The Same Coin},
4672  booktitle = {ICCAD '02: Proceedings of the 2002 IEEE/ACM International Conference on Computer-Aided Design},
4673  publisher = {ACM Press},
4674  year = {2002},
4675  pages = {132--139},
4676  doi = {http://doi.acm.org/10.1145/774572.774592}
4677}
4678</pre></td>
4679</tr>
4680<tr id="DBLP:conf/dac/PasseroneRS98" class="entry">
4681        <td>Passerone, R., Rowson, J. &amp; Sangiovanni-Vincentelli, A.&nbsp;</td>
4682        <td>Automatic Synthesis of Interfaces Between<p> Incompatible Protocols. <p class="infolinks">[<a href="javascript:toggleInfo('DBLP:conf/dac/PasseroneRS98','bibtex')">BibTeX</a>]</p></td>
4683        <td>1998</td>
4684        <td>DAC'98: Proceedings of the 35th Conference on Design Automation, pp. 8-13&nbsp;</td>
4685        <td>inproceedings</td>
4686        <td>&nbsp;</td>
4687        <td><div class="bibtex_pdf">
4688            <a href="docs/samecoin.pdf">PDF</a>
4689          </div>&nbsp;</td>
4690</tr>
4691<tr id="bib_DBLP:conf/dac/PasseroneRS98" class="bibtex noshow">
4692<td colspan="7"><b>BibTeX</b>:
4693<pre>
4694@inproceedings{DBLP:conf/dac/PasseroneRS98,
4695  author = {R.~Passerone and J.A.~Rowson and A.L.~Sangiovanni-Vincentelli},
4696  title = {Automatic Synthesis of Interfaces Between<p> Incompatible Protocols.},
4697  booktitle = {DAC'98: Proceedings of the 35th Conference on Design Automation},
4698  year = {1998},
4699  pages = {8-13}
4700}
4701</pre></td>
4702</tr>
4703<tr id="PRCB94" class="entry">
4704        <td>Pastor, E., Roig, O., Cortadella, J. &amp; Badia, R.&nbsp;</td>
4705        <td>Petri Net analysis using Boolean manipulation <p class="infolinks">[<a href="javascript:toggleInfo('PRCB94','bibtex')">BibTeX</a>]</p></td>
4706        <td>1994</td>
4707        <td><br/>Vol. 815Proc. of ICATPN'94, pp. 416-435&nbsp;</td>
4708        <td>inproceedings</td>
4709        <td>&nbsp;</td>
4710        <td>&nbsp;</td>
4711</tr>
4712<tr id="bib_PRCB94" class="bibtex noshow">
4713<td colspan="7"><b>BibTeX</b>:
4714<pre>
4715@inproceedings{PRCB94,
4716  author = {E. Pastor and O. Roig and J. Cortadella and R.M. Badia},
4717  title = {Petri Net analysis using Boolean manipulation},
4718  booktitle = {Proc. of ICATPN'94},
4719  publisher = {Springer Verlag},
4720  year = {1994},
4721  volume = {815},
4722  pages = {416--435}
4723}
4724</pre></td>
4725</tr>
4726<tr id="hennessypattersonbook" class="entry">
4727        <td>Patterson, D. &amp; Hennessy, J.&nbsp;</td>
4728        <td>Computer Organization and Design: The Hardware/Software Interface, Third Edition (The Morgan Kaufmann Series in Computer Architecture and Design) (The ... Series in Computer Architecture and Design) <p class="infolinks">[<a href="javascript:toggleInfo('hennessypattersonbook','abstract')">Abstract</a>] [<a href="javascript:toggleInfo('hennessypattersonbook','bibtex')">BibTeX</a>]</p></td>
4729        <td>2004</td>
4730        <td>Paperback&nbsp;</td>
4731        <td>book</td>
4732        <td><a href="http://www.amazon.co.uk/exec/obidos/ASIN/1558606041/citeulike-21">URL</a>&nbsp;</td>
4733        <td>&nbsp;</td>
4734</tr>
4735<tr id="abs_hennessypattersonbook" class="abstract noshow">
4736        <td colspan="7"><b>Abstract</b>: In addition to thoroughly updating every aspect of the text to reflect the most current computing technology, the third edition<br><br>*Uses standard 32-bit MIPS 32 as the primary teaching ISA.<br>*Presents the assembler-to-HLL translations in both C and Java.<br>*Highlights the latest developments in architecture in Real Stuff sections:<br><br>+ Intel IA-32<br>+ Power PC 604<br>+ Googles PC cluster<br>+ Pentium P4<br>+ SPEC CPU2000 benchmark suite for processors<br>+ SPEC Web99 benchmark for web servers<br>+ EEMBC benchmark for embedded systems<br>+ AMD Opteron memory hierarchy<br>+ AMD vs. 1A-64<br><br><br><b>New support for distinct course goals</b><br><br>Many of the adopters who have used our book throughout its two editions are refining their courses with a greater hardware or software focus. We have provided new material to support these course goals:<br><br><i>New material to support a Hardware Focus</i><br><br>+Using logic design conventions<br>+Designing with hardware description languages<br>+Advanced pipelining<br>+Designing with FPGAs<br>+HDL simulators and tutorials<br>+Xilinx CAD tools<br><br><i>New material to support a Software Focus</i><br><br>+How compilers Work<br>+How to optimize compilers<br>+How to implement object oriented languages<br>+MIPS simulator and tutorial<br>+History sections on programming languages, compilers, operating systems and databases<br><br><i><b>Whats New in the Third Edition</b></i><br><br><b>New pedagogical features</b><br><br><i>Understanding Program Performance</i> <br>-Analyzes key performance issues from the programmers perspective <br><br><i>Check Yourself Questions</i> <br>-Helps students assess their understanding of key points of a section <br><br><i>Computers In the Real World</i> <br>-Illustrates the diversity of applications of computing technology beyond traditional desktop and servers<br><br><i>For More Practice</i><br>-Provides students with additional problems they can tackle<br><br><i>In More Depth</i> <br>-Presents new information and challenging exercises for the advanced student<br><br><br><b>New reference features</b><br><br>Highlighted glossary terms and definitions appear on the book page, as bold-faced entries in the index, and as a separate and searchable reference on the CD.<br><br>A complete index of the material in the book and on the CD appears in the printed index and the CD includes a fully searchable version of the same index.<br><br>Historical Perspectives and Further Readings have been updated and expanded to include the history of software R&amp;D.<br><br>CD-Library provides materials collected from the web which directly support the text.<br><br><b>On the CD</b><br><br>CD-Bars: Full length sections that are introduced in the book and presented on the CD<br><br>CD-Appendixes: The entire set of appendixes<br><br>CD-Library: Materials collected from the web which directly support the text<br><br>CD-Exercises: <i>For More Practice</i> provides exercises and solutions for self-study<br><i>In More Depth</i> presents new information and challenging exercises for the advanced or curious student<br> <br>Glossary: Terms that are defined in the text are collected in this searchable reference<br><br>Further Reading: References are organized by the chapter they support<br><br>Software: HDL simulators, MIPS simulators, and FPGA design tools<br><br>Tutorials: SPIM, Verilog, and VHDL<br><br>Additional Support: Processor Models, Labs, Homeworks, Index covering the book and CD contents<br><br><b>Instructor Support</b><br><br>+ Instructor Support is provided in a password-protected site to adopters who request the password from our sales representative<br>+ Solutions to all the exercises <br>+ Figures from the book in a number of formats<br>+ Lecture slides prepared by the authors and other instructors<br>+ Lecture notes<br><br><b>For instructor resources click on the grey "companion site" button found on the right side of this page.</B><br>This new edition represents a major revision. <br>New to this edition:<br><br>* Entire Text has been updated to reflect new technology<br>* 70% new exercises.<br>* Includes a CD loaded with software, projects and exercises to support courses using a number of tools <br>* A new interior design presents defined terms in the margin for quick reference <br>* A new feature, Understanding Program Performance focuses on performance from the programmers perspective <br>* Two sets of exercises and solutions, For More Practice and In More Depth, are included on the CD <br>* Check Yourself questions help students check their understanding of major concepts <br>* Computers In the Real World feature illustrates the diversity of uses for information technology <br>*More detail below...</td>
4737</tr>
4738<tr id="bib_hennessypattersonbook" class="bibtex noshow">
4739<td colspan="7"><b>BibTeX</b>:
4740<pre>
4741@book{hennessypattersonbook,
4742  author = {D.A.~Patterson and J.L~Hennessy},
4743  title = {Computer Organization and Design: The Hardware/Software Interface, Third Edition (The Morgan Kaufmann Series in Computer Architecture and Design) (The ... Series in Computer Architecture and Design)},
4744  publisher = {Morgan Kaufmann},
4745  year = {2004},
4746  edition = {third},
4747  url = {http://www.amazon.co.uk/exec/obidos/ASIN/1558606041/citeulike-21}
4748}
4749</pre></td>
4750</tr>
4751<tr id="peng02thesis" class="entry">
4752        <td>Peng, H.&nbsp;</td>
4753        <td>Improving Compositional Verification through Environment Synthesis and Syntactic Model Reduction <p class="infolinks">[<a href="javascript:toggleInfo('peng02thesis','bibtex')">BibTeX</a>]</p></td>
4754        <td>2002</td>
4755        <td><i>School</i>: Dept. of Electrical and Computer Engenering, Concordia University, Montreal, Quebec, Canada&nbsp;</td>
4756        <td>phdthesis</td>
4757        <td>&nbsp;</td>
4758        <td>&nbsp;</td>
4759</tr>
4760<tr id="bib_peng02thesis" class="bibtex noshow">
4761<td colspan="7"><b>BibTeX</b>:
4762<pre>
4763@phdthesis{peng02thesis,
4764  author = {H.~Peng},
4765  title = {Improving Compositional Verification through Environment Synthesis and Syntactic Model Reduction},
4766  school = {Dept. of Electrical and Computer Engenering, Concordia University, Montreal, Quebec, Canada},
4767  year = {2002}
4768}
4769</pre></td>
4770</tr>
4771<tr id="peng02tableau" class="entry">
4772        <td>Peng, H., Mokhtari, Y. &amp; Tahar, S.&nbsp;</td>
4773        <td>Environment Synthesis for Compositional Model Checking. <p class="infolinks">[<a href="javascript:toggleInfo('peng02tableau','bibtex')">BibTeX</a>]</p></td>
4774        <td>2002</td>
4775        <td>ICCD'02: Proceedings of the 20th International Conference on Computer Design, pp. 70-&nbsp;</td>
4776        <td>inproceedings</td>
4777        <td>&nbsp;</td>
4778        <td>&nbsp;</td>
4779</tr>
4780<tr id="bib_peng02tableau" class="bibtex noshow">
4781<td colspan="7"><b>BibTeX</b>:
4782<pre>
4783@inproceedings{peng02tableau,
4784  author = {H.~Peng and Y.~Mokhtari and S.~Tahar},
4785  title = {Environment Synthesis for Compositional Model Checking.},
4786  booktitle = {ICCD'02: Proceedings of the 20th International Conference on Computer Design},
4787  publisher = {IEEE Computer Society},
4788  year = {2002},
4789  pages = {70-}
4790}
4791</pre></td>
4792</tr>
4793<tr id="peng03comparison" class="entry">
4794        <td>Peng, H., Tahar, S. &amp; Khendek, F.&nbsp;</td>
4795        <td>Comparison of SPIN and VIS for Protocol Verification. <p class="infolinks">[<a href="javascript:toggleInfo('peng03comparison','bibtex')">BibTeX</a>]</p></td>
4796        <td>2003</td>
4797        <td>International Journal on Software Tools for Technology Transfer (STTT)<br/>Vol. 4(2), pp. 234-245&nbsp;</td>
4798        <td>article</td>
4799        <td>&nbsp;</td>
4800        <td>&nbsp;</td>
4801</tr>
4802<tr id="bib_peng03comparison" class="bibtex noshow">
4803<td colspan="7"><b>BibTeX</b>:
4804<pre>
4805@article{peng03comparison,
4806  author = {H.~Peng and S.~Tahar and F.~Khendek},
4807  title = {Comparison of SPIN and VIS for Protocol Verification.},
4808  journal = {International Journal on Software Tools for Technology Transfer (STTT)},
4809  publisher = {Springer},
4810  year = {2003},
4811  volume = {4},
4812  number = {2},
4813  pages = {234-245}
4814}
4815</pre></td>
4816</tr>
4817<tr id="omi95rsp" class="entry">
4818        <td>Pevtschin, V.&nbsp;</td>
4819        <td>The Open Microprocessor Systems Initiative: A Strategy Towards Integrated System Design <p class="infolinks">[<a href="javascript:toggleInfo('omi95rsp','bibtex')">BibTeX</a>]</p></td>
4820        <td>1995</td>
4821        <td>RSP'95: Proceddings of the 6th IEEE International Workshop on Rapid System Prototyping, pp. 2-11&nbsp;</td>
4822        <td>inproceedings</td>
4823        <td><a href="http://doi.ieeecomputersociety.org/10.1109/IWRSP.1995.518564">DOI</a> &nbsp;</td>
4824        <td>&nbsp;</td>
4825</tr>
4826<tr id="bib_omi95rsp" class="bibtex noshow">
4827<td colspan="7"><b>BibTeX</b>:
4828<pre>
4829@inproceedings{omi95rsp,
4830  author = {V. Pevtschin},
4831  title = {The Open Microprocessor Systems Initiative: A Strategy Towards Integrated System Design},
4832  booktitle = {RSP'95: Proceddings of the 6th IEEE International Workshop on Rapid System Prototyping},
4833  year = {1995},
4834  pages = {2--11},
4835  doi = {http://doi.ieeecomputersociety.org/10.1109/IWRSP.1995.518564}
4836}
4837</pre></td>
4838</tr>
4839<tr id="plath99sfi" class="entry">
4840        <td>Plath, M. &amp; Ryan, M.&nbsp;R. Berghammer and Y. Lakhnech (Ed.)</td>
4841        <td>SFI: a Feature Integration Tool <p class="infolinks">[<a href="javascript:toggleInfo('plath99sfi','bibtex')">BibTeX</a>]</p></td>
4842        <td>1999</td>
4843        <td>Tool Support for System Specification, Development and Verification, pp. 201-216&nbsp;</td>
4844        <td>inproceedings</td>
4845        <td>&nbsp;</td>
4846        <td><div class="bibtex_pdf">
4847            <a href="docs/plath99sfi.ps">PDF</a>
4848          </div>&nbsp;</td>
4849</tr>
4850<tr id="bib_plath99sfi" class="bibtex noshow">
4851<td colspan="7"><b>BibTeX</b>:
4852<pre>
4853@inproceedings{plath99sfi,
4854  author = {M.C.~Plath and M.D.~Ryan},
4855  title = {SFI: a Feature Integration Tool},
4856  booktitle = {Tool Support for System Specification, Development and Verification},
4857  publisher = {Springer},
4858  year = {1999},
4859  pages = {201--216}
4860}
4861</pre></td>
4862</tr>
4863<tr id="plath01feature" class="entry">
4864        <td>Plath, M. &amp; Ryan, M.&nbsp;</td>
4865        <td>Feature Integration using a Feature Construct <p class="infolinks">[<a href="javascript:toggleInfo('plath01feature','bibtex')">BibTeX</a>]</p></td>
4866        <td>2001</td>
4867        <td>Science of Computer Programming<br/>Vol. 41(1), pp. 53-84&nbsp;</td>
4868        <td>article</td>
4869        <td><a href="http://dx.doi.org/10.1016/S0167-6423(00)00018-6">DOI</a> &nbsp;</td>
4870        <td>&nbsp;</td>
4871</tr>
4872<tr id="bib_plath01feature" class="bibtex noshow">
4873<td colspan="7"><b>BibTeX</b>:
4874<pre>
4875@article{plath01feature,
4876  author = {M.~Plath and M.~Ryan},
4877  title = {Feature Integration using a Feature Construct},
4878  journal = {Science of Computer Programming},
4879  publisher = {Elsevier North-Holland, Inc.},
4880  year = {2001},
4881  volume = {41},
4882  number = {1},
4883  pages = {53--84},
4884  doi = {http://dx.doi.org/10.1016/S0167-6423(00)00018-6}
4885}
4886</pre></td>
4887</tr>
4888<tr id="plath98feature" class="entry">
4889        <td>Plath, M. &amp; Ryan, M.&nbsp;</td>
4890        <td>A feature construct for Promela <p class="infolinks">[<a href="javascript:toggleInfo('plath98feature','bibtex')">BibTeX</a>]</p></td>
4891        <td>1998</td>
4892        <td>SPIN'98: Proceedings of the 4th SPIN workshop&nbsp;</td>
4893        <td>inproceedings</td>
4894        <td><a href="citeseer.ist.psu.edu/plath98feature.html">URL</a>&nbsp;</td>
4895        <td>&nbsp;</td>
4896</tr>
4897<tr id="bib_plath98feature" class="bibtex noshow">
4898<td colspan="7"><b>BibTeX</b>:
4899<pre>
4900@inproceedings{plath98feature,
4901  author = {M.C.~Plath and M.D.~Ryan},
4902  title = {A feature construct for Promela},
4903  booktitle = {SPIN'98: Proceedings of the 4th SPIN workshop},
4904  year = {1998},
4905  url = {citeseer.ist.psu.edu/plath98feature.html}
4906}
4907</pre></td>
4908</tr>
4909<tr id="Purandare09Strengthening" class="entry">
4910        <td>Purandare, M., Wahl, T. &amp; Kroening, D.&nbsp;</td>
4911        <td>Strengthening Properties Using on Refinement <p class="infolinks">[<a href="javascript:toggleInfo('Purandare09Strengthening','bibtex')">BibTeX</a>]</p></td>
4912        <td>2009</td>
4913        <td>DATE '09: Proceedings of the conference on Design, Automation and Test in Europe, pp. 1692-1697&nbsp;</td>
4914        <td>inproceedings</td>
4915        <td>&nbsp;</td>
4916        <td><div class="bibtex_pdf">
4917            <a href="docs/Strenghtening Properties Using AR 09.PDF">PDF</a>
4918          </div>&nbsp;</td>
4919</tr>
4920<tr id="bib_Purandare09Strengthening" class="bibtex noshow">
4921<td colspan="7"><b>BibTeX</b>:
4922<pre>
4923@inproceedings{Purandare09Strengthening,
4924  author = {M. Purandare and T. Wahl and D. Kroening},
4925  title = {Strengthening Properties Using on Refinement},
4926  booktitle = {DATE '09: Proceedings of the conference on Design, Automation and Test in Europe},
4927  year = {2009},
4928  pages = {1692-1697}
4929}
4930</pre></td>
4931</tr>
4932<tr id="fredHDR" class="entry">
4933        <td>P&eacute;trot, F.&nbsp;</td>
4934        <td>Int&eacute;gration des syst&egrave;mes mat&eacute;riel/logiciel <p class="infolinks">[<a href="javascript:toggleInfo('fredHDR','bibtex')">BibTeX</a>]</p></td>
4935        <td>2003</td>
4936        <td><i>School</i>: Universit&eacute;e Pierre et Marie Curie&nbsp;</td>
4937        <td>mastersthesis</td>
4938        <td>&nbsp;</td>
4939        <td>&nbsp;</td>
4940</tr>
4941<tr id="bib_fredHDR" class="bibtex noshow">
4942<td colspan="7"><b>BibTeX</b>:
4943<pre>
4944@mastersthesis{fredHDR,
4945  author = {P&eacute;trot, F.},
4946  title = {Int&eacute;gration des syst&egrave;mes mat&eacute;riel/logiciel},
4947  school = {Universit&eacute;e Pierre et Marie Curie},
4948  year = {2003}
4949}
4950</pre></td>
4951</tr>
4952<tr id="rasiowa78algebra" class="entry">
4953        <td>Rasiowa, H.&nbsp;Studies in Logics and the Foundations of Mathematics (Ed.)</td>
4954        <td>An Algebraic Approach to Non-Classicals Logis <p class="infolinks">[<a href="javascript:toggleInfo('rasiowa78algebra','bibtex')">BibTeX</a>]</p></td>
4955        <td>1978</td>
4956        <td>&nbsp;</td>
4957        <td>book</td>
4958        <td>&nbsp;</td>
4959        <td>&nbsp;</td>
4960</tr>
4961<tr id="bib_rasiowa78algebra" class="bibtex noshow">
4962<td colspan="7"><b>BibTeX</b>:
4963<pre>
4964@book{rasiowa78algebra,
4965  author = {H.~Rasiowa},
4966  title = {An Algebraic Approach to Non-Classicals Logis},
4967  year = {1978}
4968}
4969</pre></td>
4970</tr>
4971<tr id="RaviS04MinimalAssig" class="entry">
4972        <td>Ravi, K. &amp; Somenzi, F.&nbsp;Kurt Jensen and Andreas Podelski (Ed.)</td>
4973        <td>Minimal Assignments for Bounded Model Checking <p class="infolinks">[<a href="javascript:toggleInfo('RaviS04MinimalAssig','bibtex')">BibTeX</a>]</p></td>
4974        <td>2004</td>
4975        <td><br/>Vol. 2988TACAS'04: Proceedings of 10th International Conference on Tools and Algorithms for the Construction and Analysis of Systems, pp. 31-45&nbsp;</td>
4976        <td>inproceedings</td>
4977        <td>&nbsp;</td>
4978        <td><div class="bibtex_pdf">
4979            <a href="docs/minimal_assignment_for_bmc.pdf">PDF</a>
4980          </div>&nbsp;</td>
4981</tr>
4982<tr id="bib_RaviS04MinimalAssig" class="bibtex noshow">
4983<td colspan="7"><b>BibTeX</b>:
4984<pre>
4985@inproceedings{RaviS04MinimalAssig,
4986  author = {K.~Ravi and F.~Somenzi},
4987  title = {Minimal Assignments for Bounded Model Checking},
4988  booktitle = {TACAS'04: Proceedings of 10th International Conference on Tools and Algorithms for the Construction and Analysis of Systems},
4989  publisher = {Springer},
4990  year = {2004},
4991  volume = {2988},
4992  pages = {31-45}
4993}
4994</pre></td>
4995</tr>
4996<tr id="DBLP:conf/cav/RoordaC06" class="entry">
4997        <td>Roorda, J.-W. &amp; Claessen, K.&nbsp;Thomas Ball and Robert B. Jones (Ed.)</td>
4998        <td>SAT-Based Assistance in Abstraction Refinement for Symbolic Trajectory Evaluation <p class="infolinks">[<a href="javascript:toggleInfo('DBLP:conf/cav/RoordaC06','bibtex')">BibTeX</a>]</p></td>
4999        <td>2006</td>
5000        <td><br/>Vol. 4144CAV, pp. 175-189&nbsp;</td>
5001        <td>inproceedings</td>
5002        <td>&nbsp;</td>
5003        <td>&nbsp;</td>
5004</tr>
5005<tr id="bib_DBLP:conf/cav/RoordaC06" class="bibtex noshow">
5006<td colspan="7"><b>BibTeX</b>:
5007<pre>
5008@inproceedings{DBLP:conf/cav/RoordaC06,
5009  author = {Jan-Willem Roorda and Koen Claessen},
5010  title = {SAT-Based Assistance in Abstraction Refinement for Symbolic Trajectory Evaluation},
5011  booktitle = {CAV},
5012  year = {2006},
5013  volume = {4144},
5014  pages = {175-189}
5015}
5016</pre></td>
5017</tr>
5018<tr id="roux03ctl" class="entry">
5019        <td>Roux, C. &amp; Encrenaz, E.&nbsp;Daniel Geist and Enrico Tronci (Ed.)</td>
5020        <td>CTL May Be Ambiguous When Model Checking Moore Machines. <p class="infolinks">[<a href="javascript:toggleInfo('roux03ctl','bibtex')">BibTeX</a>]</p></td>
5021        <td>2003</td>
5022        <td><br/>Vol. 2860CHARME, pp. 164-169&nbsp;</td>
5023        <td>inproceedings</td>
5024        <td><a href="http://springerlink.metapress.com/openurl.asp?genre=article&issn=0302-9743&volume=2860&spage=164">URL</a>&nbsp;</td>
5025        <td><div class="bibtex_pdf">
5026            <a href="docs/rouxctl.pdf">PDF</a>
5027          </div>&nbsp;</td>
5028</tr>
5029<tr id="bib_roux03ctl" class="bibtex noshow">
5030<td colspan="7"><b>BibTeX</b>:
5031<pre>
5032@inproceedings{roux03ctl,
5033  author = {C.~Roux and E.~Encrenaz},
5034  title = {CTL May Be Ambiguous When Model Checking Moore Machines.},
5035  booktitle = {CHARME},
5036  publisher = {Springer},
5037  year = {2003},
5038  volume = {2860},
5039  pages = {164-169},
5040  url = {http://springerlink.metapress.com/openurl.asp?genre=article&amp;issn=0302-9743&amp;volume=2860&amp;spage=164}
5041}
5042</pre></td>
5043</tr>
5044<tr id="DBLP:conf/date/RoychoudhuryMK03" class="entry">
5045        <td>Roychoudhury, A., Mitra, T. &amp; Karri, S.R.&nbsp;</td>
5046        <td>Using Formal Techniques to Debug the AMBA System-on-Chip Bus Protocol. <p class="infolinks">[<a href="javascript:toggleInfo('DBLP:conf/date/RoychoudhuryMK03','bibtex')">BibTeX</a>]</p></td>
5047        <td>2003</td>
5048        <td>DATE, pp. 10828-10833&nbsp;</td>
5049        <td>inproceedings</td>
5050        <td>&nbsp;</td>
5051        <td>&nbsp;</td>
5052</tr>
5053<tr id="bib_DBLP:conf/date/RoychoudhuryMK03" class="bibtex noshow">
5054<td colspan="7"><b>BibTeX</b>:
5055<pre>
5056@inproceedings{DBLP:conf/date/RoychoudhuryMK03,
5057  author = {Abhik Roychoudhury and Tulika Mitra and S. R. Karri},
5058  title = {Using Formal Techniques to Debug the AMBA System-on-Chip Bus Protocol.},
5059  booktitle = {DATE},
5060  publisher = {IEEE Computer Society},
5061  year = {2003},
5062  pages = {10828-10833}
5063}
5064</pre></td>
5065</tr>
5066<tr id="sawada97trace" class="entry">
5067        <td>Sawada, J. &amp; Hunt, W.&nbsp;</td>
5068        <td>Trace Table Based Approach for Pipeline Microprocessor Verification <p class="infolinks">[<a href="javascript:toggleInfo('sawada97trace','bibtex')">BibTeX</a>]</p></td>
5069        <td>1997</td>
5070        <td>CAV'97: Proceedings of the 9th International Conference on Computer Aided Verification, pp. 364-375&nbsp;</td>
5071        <td>inproceedings</td>
5072        <td>&nbsp;</td>
5073        <td>&nbsp;</td>
5074</tr>
5075<tr id="bib_sawada97trace" class="bibtex noshow">
5076<td colspan="7"><b>BibTeX</b>:
5077<pre>
5078@inproceedings{sawada97trace,
5079  author = {J.~Sawada and W.A.~Hunt},
5080  title = {Trace Table Based Approach for Pipeline Microprocessor Verification},
5081  booktitle = {CAV'97: Proceedings of the 9th International Conference on Computer Aided Verification},
5082  publisher = {Springer-Verlag LNCS 1254},
5083  year = {1997},
5084  pages = {364--375}
5085}
5086</pre></td>
5087</tr>
5088<tr id="eveking06fdl" class="entry">
5089        <td>Schickel, M., Nimbler, V., Braun, M. &amp; Eveking, H.&nbsp;</td>
5090        <td>On Consistency and Completness of Property-Sets~: Exploiting the Property-Based Design Process <p class="infolinks">[<a href="javascript:toggleInfo('eveking06fdl','bibtex')">BibTeX</a>]</p></td>
5091        <td>2006</td>
5092        <td>FDL'06: Proceeding of Forum on specification and Design Languages&nbsp;</td>
5093        <td>inproceedings</td>
5094        <td>&nbsp;</td>
5095        <td>&nbsp;</td>
5096</tr>
5097<tr id="bib_eveking06fdl" class="bibtex noshow">
5098<td colspan="7"><b>BibTeX</b>:
5099<pre>
5100@inproceedings{eveking06fdl,
5101  author = {M.~Schickel and V.~Nimbler and M.~Braun and H.~Eveking},
5102  title = {On Consistency and Completness of Property-Sets~: Exploiting the Property-Based Design Process},
5103  booktitle = {FDL'06: Proceeding of Forum on specification and Design Languages},
5104  year = {2006}
5105}
5106</pre></td>
5107</tr>
5108<tr id="DBLP:journals/fmsd/SegerB95" class="entry">
5109        <td>Seger, C.-J.H. &amp; Bryant, R.E.&nbsp;</td>
5110        <td>Formal Verification by Symbolic Evaluation of Partially-Ordered Trajectories <p class="infolinks">[<a href="javascript:toggleInfo('DBLP:journals/fmsd/SegerB95','bibtex')">BibTeX</a>]</p></td>
5111        <td>1995</td>
5112        <td>Formal Methods in System Design<br/>Vol. 6(2), pp. 147-189&nbsp;</td>
5113        <td>article</td>
5114        <td>&nbsp;</td>
5115        <td>&nbsp;</td>
5116</tr>
5117<tr id="bib_DBLP:journals/fmsd/SegerB95" class="bibtex noshow">
5118<td colspan="7"><b>BibTeX</b>:
5119<pre>
5120@article{DBLP:journals/fmsd/SegerB95,
5121  author = {Carl-Johan H. Seger and Randal E. Bryant},
5122  title = {Formal Verification by Symbolic Evaluation of Partially-Ordered Trajectories},
5123  journal = {Formal Methods in System Design},
5124  year = {1995},
5125  volume = {6},
5126  number = {2},
5127  pages = {147-189}
5128}
5129</pre></td>
5130</tr>
5131<tr id="Sharygin2012" class="entry">
5132        <td>Sharygina, N., Tonetta, S. &amp; Tsitovich, A.&nbsp;</td>
5133        <td>An abstraction refinement approach combining precise and approximated techniques <p class="infolinks">[<a href="javascript:toggleInfo('Sharygin2012','bibtex')">BibTeX</a>]</p></td>
5134        <td>2012</td>
5135        <td>International Journal on Software Tools for Technology Transfer (STTT)<br/>Vol. 14, pp. 1-14&nbsp;</td>
5136        <td>article</td>
5137        <td><a href="http://dx.doi.org/10.1007/s10009-011-0185-y">URL</a>&nbsp;</td>
5138        <td><div class="bibtex_pdf">
5139            <a href="docs/A_framework_forCVofMVviaAR-ATVA09.pdf">PDF</a>
5140          </div>&nbsp;</td>
5141</tr>
5142<tr id="bib_Sharygin2012" class="bibtex noshow">
5143<td colspan="7"><b>BibTeX</b>:
5144<pre>
5145@article{Sharygin2012,
5146  author = {Natasha Sharygina and Stefano Tonetta and Aliaksei Tsitovich},
5147  title = {An abstraction refinement approach combining precise and approximated techniques},
5148  journal = {International Journal on Software Tools for Technology Transfer (STTT)},
5149  publisher = {Springer},
5150  year = {2012},
5151  volume = {14},
5152  pages = {1-14},
5153  url = {http://dx.doi.org/10.1007/s10009-011-0185-y}
5154}
5155</pre></td>
5156</tr>
5157<tr id="magnier-sherman:factotum" class="entry">
5158        <td>Sherman, D. &amp; Magnier, N.&nbsp;Bernhard Steffen (Ed.)</td>
5159        <td>Factotum: Automatic and Systematic Sharing Support for Systems Analyzers <p class="infolinks">[<a href="javascript:toggleInfo('magnier-sherman:factotum','bibtex')">BibTeX</a>]</p></td>
5160        <td>1982</td>
5161        <td>Tools and Algorithms for the Construction and Analysis of Systems (TACAS'98)&nbsp;</td>
5162        <td>inproceedings</td>
5163        <td>&nbsp;</td>
5164        <td>&nbsp;</td>
5165</tr>
5166<tr id="bib_magnier-sherman:factotum" class="bibtex noshow">
5167<td colspan="7"><b>BibTeX</b>:
5168<pre>
5169@inproceedings{magnier-sherman:factotum,
5170  author = {D.J Sherman and N. Magnier},
5171  title = {Factotum: Automatic and Systematic Sharing Support for Systems Analyzers},
5172  booktitle = {Tools and Algorithms for the Construction and Analysis of Systems (TACAS'98)},
5173  publisher = {Springer-Verlag LNCS 1384},
5174  year = {1982}
5175}
5176</pre></td>
5177</tr>
5178<tr id="shohamG04monotonic" class="entry">
5179        <td>Shoham, S. &amp; Grumberg, O.&nbsp;Andreas Podelski Kurt Jensen (Ed.)</td>
5180        <td>Monotonic Abstraction-Refinement for CTL. <p class="infolinks">[<a href="javascript:toggleInfo('shohamG04monotonic','bibtex')">BibTeX</a>]</p></td>
5181        <td>2004</td>
5182        <td><br/>Vol. 2988TACAS'04: Proceedings of the 10th International Conference on Tools and Algorithms for the Construction and Analysis of Systems, pp. 546-560&nbsp;</td>
5183        <td>inproceedings</td>
5184        <td>&nbsp;</td>
5185        <td><div class="bibtex_pdf">
5186            <a href="docs/monotone-abs-ref.ps">PDF</a>
5187          </div>&nbsp;</td>
5188</tr>
5189<tr id="bib_shohamG04monotonic" class="bibtex noshow">
5190<td colspan="7"><b>BibTeX</b>:
5191<pre>
5192@inproceedings{shohamG04monotonic,
5193  author = {S.~Shoham and O.~Grumberg},
5194  title = {Monotonic Abstraction-Refinement for CTL.},
5195  booktitle = {TACAS'04: Proceedings of the 10th International Conference on Tools and Algorithms for the Construction and Analysis of Systems},
5196  publisher = {Springer},
5197  year = {2004},
5198  volume = {2988},
5199  pages = {546-560}
5200}
5201</pre></td>
5202</tr>
5203<tr id="shoham06precision" class="entry">
5204        <td>Shoham, S. &amp; Grumberg, O.&nbsp;</td>
5205        <td>3-Valued Abstraction: More Precision at Less Cost <p class="infolinks">[<a href="javascript:toggleInfo('shoham06precision','bibtex')">BibTeX</a>]</p></td>
5206        <td>2006</td>
5207        <td>LICS '06: proceedings of the 21st Annual IEEE Symposium on Logic in Computer Science, pp. 399-410&nbsp;</td>
5208        <td>inproceedings</td>
5209        <td><a href="http://dx.doi.org/10.1109/LICS.2006.5">DOI</a> &nbsp;</td>
5210        <td>&nbsp;</td>
5211</tr>
5212<tr id="bib_shoham06precision" class="bibtex noshow">
5213<td colspan="7"><b>BibTeX</b>:
5214<pre>
5215@inproceedings{shoham06precision,
5216  author = {S.~Shoham and O.~Grumberg},
5217  title = {3-Valued Abstraction: More Precision at Less Cost},
5218  booktitle = {LICS '06: proceedings of the 21st Annual IEEE Symposium on Logic in Computer Science},
5219  publisher = {IEEE Computer Society},
5220  year = {2006},
5221  pages = {399--410},
5222  doi = {http://dx.doi.org/10.1109/LICS.2006.5}
5223}
5224</pre></td>
5225</tr>
5226<tr id="DBLP:journals/tcad/SmithVAV05" class="entry">
5227        <td>Smith, A., Veneris, A.G., Ali, M.F. &amp; Viglas, A.&nbsp;</td>
5228        <td>Fault diagnosis and logic debugging using Boolean satisfiability <p class="infolinks">[<a href="javascript:toggleInfo('DBLP:journals/tcad/SmithVAV05','bibtex')">BibTeX</a>]</p></td>
5229        <td>2005</td>
5230        <td>IEEE Trans. on CAD of Integrated Circuits and Systems<br/>Vol. 24(10), pp. 1606-1621&nbsp;</td>
5231        <td>article</td>
5232        <td>&nbsp;</td>
5233        <td>&nbsp;</td>
5234</tr>
5235<tr id="bib_DBLP:journals/tcad/SmithVAV05" class="bibtex noshow">
5236<td colspan="7"><b>BibTeX</b>:
5237<pre>
5238@article{DBLP:journals/tcad/SmithVAV05,
5239  author = {Alexander Smith and Andreas G. Veneris and Moayad Fahim Ali and Anastasios Viglas},
5240  title = {Fault diagnosis and logic debugging using Boolean satisfiability},
5241  journal = {IEEE Trans. on CAD of Integrated Circuits and Systems},
5242  year = {2005},
5243  volume = {24},
5244  number = {10},
5245  pages = {1606-1621}
5246}
5247</pre></td>
5248</tr>
5249<tr id="somenzi00efficient" class="entry">
5250        <td>Somenzi, F. &amp; Bloem, R.&nbsp;E.A. Emerson and A.P. Sistla (Ed.)</td>
5251        <td>Efficient B&uuml;chi Automata from LTL Formulae. <p class="infolinks">[<a href="javascript:toggleInfo('somenzi00efficient','bibtex')">BibTeX</a>]</p></td>
5252        <td>2000</td>
5253        <td><br/>Vol. 1855CAV, pp. 248-263&nbsp;</td>
5254        <td>inproceedings</td>
5255        <td>&nbsp;</td>
5256        <td><div class="bibtex_pdf">
5257            <a href="docs/wring.ps">PDF</a>
5258          </div>&nbsp;</td>
5259</tr>
5260<tr id="bib_somenzi00efficient" class="bibtex noshow">
5261<td colspan="7"><b>BibTeX</b>:
5262<pre>
5263@inproceedings{somenzi00efficient,
5264  author = {F.~Somenzi and R.~Bloem},
5265  title = {Efficient B&uuml;chi Automata from LTL Formulae.},
5266  booktitle = {CAV},
5267  publisher = {Springer},
5268  year = {2000},
5269  volume = {1855},
5270  pages = {248-263}
5271}
5272</pre></td>
5273</tr>
5274<tr id="IMM2001-0855" class="entry">
5275        <td>Spars&oslash;, J.&nbsp;</td>
5276        <td>Asynchronous Circuit Design - A Tutorial <p class="infolinks">[<a href="javascript:toggleInfo('IMM2001-0855','bibtex')">BibTeX</a>]</p></td>
5277        <td>2001</td>
5278        <td>Chapters 1-8 in ''Principles of asynchronous circuit design - A systems Perspective'', pp. 1-152&nbsp;</td>
5279        <td>incollection</td>
5280        <td><a href="http://www2.imm.dtu.dk/pubdb/p.php?855">URL</a>&nbsp;</td>
5281        <td>&nbsp;</td>
5282</tr>
5283<tr id="bib_IMM2001-0855" class="bibtex noshow">
5284<td colspan="7"><b>BibTeX</b>:
5285<pre>
5286@incollection{IMM2001-0855,
5287  author = {J. Spars&oslash;},
5288  title = {Asynchronous Circuit Design - A Tutorial},
5289  booktitle = {Chapters 1-8 in ''Principles of asynchronous circuit design - A systems Perspective''},
5290  publisher = {Kluwer Academic Publishers},
5291  year = {2001},
5292  pages = {1-152},
5293  url = {http://www2.imm.dtu.dk/pubdb/p.php?855}
5294}
5295</pre></td>
5296</tr>
5297<tr id="StaberFBD06" class="entry">
5298        <td>Staber, S., Fey, G&ouml;., Bloem, R. &amp; Drechsler, R.&nbsp;Eyal Bin and Avi Ziv and Shmuel Ur (Ed.)</td>
5299        <td>Automatic Fault Localization for Property Checking <p class="infolinks">[<a href="javascript:toggleInfo('StaberFBD06','bibtex')">BibTeX</a>]</p></td>
5300        <td>2006</td>
5301        <td><br/>Vol. 4383Haifa Verification Conference, pp. 50-64&nbsp;</td>
5302        <td>inproceedings</td>
5303        <td>&nbsp;</td>
5304        <td><div class="bibtex_pdf">
5305            <a href="docs/FaultLocalizationforpropertychecking-CAD06.pdf">PDF</a>
5306          </div>&nbsp;</td>
5307</tr>
5308<tr id="bib_StaberFBD06" class="bibtex noshow">
5309<td colspan="7"><b>BibTeX</b>:
5310<pre>
5311@inproceedings{StaberFBD06,
5312  author = {Stefan Staber and G&ouml;rschwin Fey and Roderick Bloem and Rolf Drechsler},
5313  title = {Automatic Fault Localization for Property Checking},
5314  booktitle = {Haifa Verification Conference},
5315  publisher = {Springer},
5316  year = {2006},
5317  volume = {4383},
5318  pages = {50-64}
5319}
5320</pre></td>
5321</tr>
5322<tr id="AtelierB" class="entry">
5323        <td>STERIA Technologie de l'information&nbsp;</td>
5324        <td>Atelier B, Manuel Utilisateur <p class="infolinks">[<a href="javascript:toggleInfo('AtelierB','bibtex')">BibTeX</a>]</p></td>
5325        <td>1998</td>
5326        <td>&nbsp;</td>
5327        <td>manual</td>
5328        <td>&nbsp;</td>
5329        <td>&nbsp;</td>
5330</tr>
5331<tr id="bib_AtelierB" class="bibtex noshow">
5332<td colspan="7"><b>BibTeX</b>:
5333<pre>
5334@manual{AtelierB,
5335  author = {STERIA Technologie de l'information},
5336  title = {Atelier B, Manuel Utilisateur},
5337  year = {1998}
5338}
5339</pre></td>
5340</tr>
5341<tr id="DBLP:conf/date/SulflowFBKD09" class="entry">
5342        <td>S&uuml;lflow, A., Fey, G&ouml;., Braunstein, C&eacute;., K&uuml;hne, U. &amp; Drechsler, R.&nbsp;</td>
5343        <td>Increasing the accuracy of SAT-based debugging <p class="infolinks">[<a href="javascript:toggleInfo('DBLP:conf/date/SulflowFBKD09','bibtex')">BibTeX</a>]</p></td>
5344        <td>2009</td>
5345        <td>DATE, pp. 1326-1331&nbsp;</td>
5346        <td>inproceedings</td>
5347        <td>&nbsp;</td>
5348        <td><div class="bibtex_pdf">
5349            <a href="docs/increasingaccuracy-DATE09.pdf">PDF</a>
5350          </div>&nbsp;</td>
5351</tr>
5352<tr id="bib_DBLP:conf/date/SulflowFBKD09" class="bibtex noshow">
5353<td colspan="7"><b>BibTeX</b>:
5354<pre>
5355@inproceedings{DBLP:conf/date/SulflowFBKD09,
5356  author = {Andr&eacute; S&uuml;lflow and G&ouml;rschwin Fey and C&eacute;cile Braunstein and Ulrich K&uuml;hne and Rolf Drechsler},
5357  title = {Increasing the accuracy of SAT-based debugging},
5358  booktitle = {DATE},
5359  publisher = {IEEE},
5360  year = {2009},
5361  pages = {1326-1331}
5362}
5363</pre></td>
5364</tr>
5365<tr id="turk05thesis" class="entry">
5366        <td>T&uuml;rk, T.&nbsp;</td>
5367        <td>A Hierarchy for Accellera's Property Specification Language <p class="infolinks">[<a href="javascript:toggleInfo('turk05thesis','bibtex')">BibTeX</a>]</p></td>
5368        <td>2005</td>
5369        <td><i>School</i>: University of Kaiserslautern&nbsp;</td>
5370        <td>phdthesis</td>
5371        <td><a href="http://thomas-tuerk.de/dokumente/Diplomarbeit.pdf">URL</a>&nbsp;</td>
5372        <td>&nbsp;</td>
5373</tr>
5374<tr id="bib_turk05thesis" class="bibtex noshow">
5375<td colspan="7"><b>BibTeX</b>:
5376<pre>
5377@phdthesis{turk05thesis,
5378  author = {T&uuml;rk, T.},
5379  title = {A Hierarchy for Accellera's Property Specification Language},
5380  school = {University of Kaiserslautern},
5381  year = {2005},
5382  url = {http://thomas-tuerk.de/dokumente/Diplomarbeit.pdf}
5383}
5384</pre></td>
5385</tr>
5386<tr id="vismanual" class="entry">
5387        <td>The VIS Group&nbsp;</td>
5388        <td>VIS User's Manual <p class="infolinks">[<a href="javascript:toggleInfo('vismanual','bibtex')">BibTeX</a>]</p></td>
5389        <td>1996</td>
5390        <td>&nbsp;</td>
5391        <td>manual</td>
5392        <td>&nbsp;</td>
5393        <td><div class="bibtex_pdf">
5394            <a href="docs/vis_user.ps">PDF</a>
5395          </div>&nbsp;</td>
5396</tr>
5397<tr id="bib_vismanual" class="bibtex noshow">
5398<td colspan="7"><b>BibTeX</b>:
5399<pre>
5400@manual{vismanual,
5401  author = {The VIS Group},
5402  title = {VIS User's Manual},
5403  year = {1996}
5404}
5405</pre></td>
5406</tr>
5407<tr id="m106archi" class="entry">
5408        <td>Universit&eacute; Pierre et Marie Curie (UPMC), Paris 6&nbsp;</td>
5409        <td>UE : Achitecture des syst&egrave;mes int&eacute;gr&eacute;s, M1 <p class="infolinks">[<a href="javascript:toggleInfo('m106archi','bibtex')">BibTeX</a>]</p></td>
5410        <td></td>
5411        <td>&nbsp;</td>
5412        <td>misc</td>
5413        <td>&nbsp;</td>
5414        <td>&nbsp;</td>
5415</tr>
5416<tr id="bib_m106archi" class="bibtex noshow">
5417<td colspan="7"><b>BibTeX</b>:
5418<pre>
5419@misc{m106archi,
5420  author = {Universit&eacute; Pierre et Marie Curie (UPMC), Paris 6},
5421  title = {UE : Achitecture des syst&egrave;mes int&eacute;gr&eacute;s, M1},
5422  note = {http://www-master.ufr-info-p6.jussieu.fr/ue/archi/}
5423}
5424</pre></td>
5425</tr>
5426<tr id="fms" class="entry">
5427        <td>Upton, D.&nbsp;</td>
5428        <td>A Flexible Structure for Computer-Controlled Manufacturing Systems <p class="infolinks">[<a href="javascript:toggleInfo('fms','bibtex')">BibTeX</a>]</p></td>
5429        <td>1992</td>
5430        <td>Manufacturing Review<br/>Vol. 5(1), pp. 58-74&nbsp;</td>
5431        <td>article</td>
5432        <td>&nbsp;</td>
5433        <td>&nbsp;</td>
5434</tr>
5435<tr id="bib_fms" class="bibtex noshow">
5436<td colspan="7"><b>BibTeX</b>:
5437<pre>
5438@article{fms,
5439  author = {D.M.~Upton},
5440  title = {A Flexible Structure for Computer-Controlled Manufacturing Systems},
5441  journal = {Manufacturing Review},
5442  year = {1992},
5443  volume = {5},
5444  number = {1},
5445  pages = {58--74}
5446}
5447</pre></td>
5448</tr>
5449<tr id="Valk93" class="entry">
5450        <td>Valk, R.&nbsp;</td>
5451        <td>Bridging the Gap between Place- and Floyd-Invariants with Applications to Preemptive Scheduling <p class="infolinks">[<a href="javascript:toggleInfo('Valk93','bibtex')">BibTeX</a>]</p></td>
5452        <td>1993</td>
5453        <td><br/>Vol. 691Proc. of ICATPN'93, pp. 432-452&nbsp;</td>
5454        <td>inproceedings</td>
5455        <td>&nbsp;</td>
5456        <td>&nbsp;</td>
5457</tr>
5458<tr id="bib_Valk93" class="bibtex noshow">
5459<td colspan="7"><b>BibTeX</b>:
5460<pre>
5461@inproceedings{Valk93,
5462  author = {R. Valk},
5463  title = {Bridging the Gap between Place- and Floyd-Invariants with Applications to Preemptive Scheduling},
5464  booktitle = {Proc. of ICATPN'93},
5465  publisher = {Springer Verlag},
5466  year = {1993},
5467  volume = {691},
5468  pages = {432--452}
5469}
5470</pre></td>
5471</tr>
5472<tr id="DBLP:conf/tacas/VelevB98" class="entry">
5473        <td>Velev, M.N. &amp; Bryant, R.E.&nbsp;Bernhard Steffen (Ed.)</td>
5474        <td>Efficient Modeling of Memory Arrays in Symbolic Ternary Simulation <p class="infolinks">[<a href="javascript:toggleInfo('DBLP:conf/tacas/VelevB98','bibtex')">BibTeX</a>]</p></td>
5475        <td>1998</td>
5476        <td><br/>Vol. 1384TACAS, pp. 136-150&nbsp;</td>
5477        <td>inproceedings</td>
5478        <td>&nbsp;</td>
5479        <td><div class="bibtex_pdf">
5480            <a href="docs/EfficientModelingMemoryArraySymbolicTernarySimulation98.pdf">PDF</a>
5481          </div>&nbsp;</td>
5482</tr>
5483<tr id="bib_DBLP:conf/tacas/VelevB98" class="bibtex noshow">
5484<td colspan="7"><b>BibTeX</b>:
5485<pre>
5486@inproceedings{DBLP:conf/tacas/VelevB98,
5487  author = {Miroslav N. Velev and Randal E. Bryant},
5488  title = {Efficient Modeling of Memory Arrays in Symbolic Ternary Simulation},
5489  booktitle = {TACAS},
5490  publisher = {Springer},
5491  year = {1998},
5492  volume = {1384},
5493  pages = {136-150}
5494}
5495</pre></td>
5496</tr>
5497<tr id="xie03verified" class="entry">
5498        <td>Xie, F. &amp; Browne, J.&nbsp;</td>
5499        <td>Verified Systems by Composition from Verified Components <p class="infolinks">[<a href="javascript:toggleInfo('xie03verified','bibtex')">BibTeX</a>]</p></td>
5500        <td>2003</td>
5501        <td>ESEC/FSE 2003 : Proceedings of the 11th ACM SIGSOFT Symposium on Foundations of Software Engineering 2003 held jointly with 9th European Software Engineering Conference, pp. 277-286&nbsp;</td>
5502        <td>inproceedings</td>
5503        <td><a href="http://doi.acm.org/10.1145/940071.940109">DOI</a> &nbsp;</td>
5504        <td>&nbsp;</td>
5505</tr>
5506<tr id="bib_xie03verified" class="bibtex noshow">
5507<td colspan="7"><b>BibTeX</b>:
5508<pre>
5509@inproceedings{xie03verified,
5510  author = {F.~Xie and J.C.~Browne},
5511  title = {Verified Systems by Composition from Verified Components},
5512  booktitle = {ESEC/FSE 2003 : Proceedings of the 11th ACM SIGSOFT Symposium on Foundations of Software Engineering 2003 held jointly with 9th European Software Engineering Conference},
5513  publisher = {ACM Press},
5514  year = {2003},
5515  pages = {277--286},
5516  doi = {http://doi.acm.org/10.1145/940071.940109}
5517}
5518</pre></td>
5519</tr>
5520<tr id="Yadgar10thesis" class="entry">
5521        <td>Yadgar, A.&nbsp;</td>
5522        <td>New Approaches to Model Checking and to 3-Valued Abstraction and Refinement <p class="infolinks">[<a href="javascript:toggleInfo('Yadgar10thesis','bibtex')">BibTeX</a>]</p></td>
5523        <td>2010</td>
5524        <td><i>School</i>: Technion - Israel Institute of Technology&nbsp;</td>
5525        <td>phdthesis</td>
5526        <td>&nbsp;</td>
5527        <td><div class="bibtex_pdf">
5528            <a href="docs/AviYadgarPhDThesisReport.pdf">PDF</a>
5529          </div>&nbsp;</td>
5530</tr>
5531<tr id="bib_Yadgar10thesis" class="bibtex noshow">
5532<td colspan="7"><b>BibTeX</b>:
5533<pre>
5534@phdthesis{Yadgar10thesis,
5535  author = {Avi Yadgar},
5536  title = {New Approaches to Model Checking and to 3-Valued Abstraction and Refinement},
5537  school = {Technion - Israel Institute of Technology},
5538  year = {2010}
5539}
5540</pre></td>
5541</tr>
5542<tr id="cegarhwcasestudy07" class="entry">
5543        <td>Zaher S. Andraus, Mark H. Liffiton, K.A.S.&nbsp;</td>
5544        <td>CEGAR-Based Formal Hardware Verification: A Case Study <p class="infolinks">[<a href="javascript:toggleInfo('cegarhwcasestudy07','bibtex')">BibTeX</a>]</p></td>
5545        <td>2007</td>
5546        <td>&nbsp;</td>
5547        <td>techreport</td>
5548        <td>&nbsp;</td>
5549        <td><div class="bibtex_pdf">
5550            <a href="docs/CEGARHWVerifCaseStudy07.pdf">PDF</a>
5551          </div>&nbsp;</td>
5552</tr>
5553<tr id="bib_cegarhwcasestudy07" class="bibtex noshow">
5554<td colspan="7"><b>BibTeX</b>:
5555<pre>
5556@techreport{cegarhwcasestudy07,
5557  author = {Zaher S. Andraus, Mark H. Liffiton, Karem A. Sakallah},
5558  title = {CEGAR-Based Formal Hardware Verification: A Case Study},
5559  year = {2007}
5560}
5561</pre></td>
5562</tr>
5563<tr id="Zaki08analogformalsurvey" class="entry">
5564        <td>Zaki, M., Tahar, S. &amp; Bois, G.&nbsp;</td>
5565        <td>Formal verification of analog and mixed signal designs: A survey <p class="infolinks">[<a href="javascript:toggleInfo('Zaki08analogformalsurvey','bibtex')">BibTeX</a>]</p></td>
5566        <td>2008</td>
5567        <td>Microelectronics Journal<br/>Vol. 39(12), pp. 1395-1404&nbsp;</td>
5568        <td>article</td>
5569        <td><a href="http://dx.doi.org/10.1016/j.mejo.2008.05.013">DOI</a> &nbsp;</td>
5570        <td><div class="bibtex_pdf">
5571            <a href="docs/surveyZaki08.pdf">PDF</a>
5572          </div>&nbsp;</td>
5573</tr>
5574<tr id="bib_Zaki08analogformalsurvey" class="bibtex noshow">
5575<td colspan="7"><b>BibTeX</b>:
5576<pre>
5577@article{Zaki08analogformalsurvey,
5578  author = {M.H~Zaki and S.~Tahar and G.~Bois},
5579  title = {Formal verification of analog and mixed signal designs: A survey},
5580  journal = {Microelectronics Journal},
5581  publisher = {Elsevier Science Publishers B. V.},
5582  year = {2008},
5583  volume = {39},
5584  number = {12},
5585  pages = {1395--1404},
5586  doi = {http://dx.doi.org/10.1016/j.mejo.2008.05.013}
5587}
5588</pre></td>
5589</tr>
5590<tr id="DBLP:conf/fmcad/2002" class="entry">
5591        <td>&nbsp;Mark Aagaard and John W. O'Leary (Ed.)</td>
5592        <td>Formal Methods in Computer-Aided Design, 4th International Conference, FMCAD 2002, Portland, OR, USA, November 6-8, 2002, Proceedings <p class="infolinks">[<a href="javascript:toggleInfo('DBLP:conf/fmcad/2002','bibtex')">BibTeX</a>]</p></td>
5593        <td>2002</td>
5594        <td><br/>Vol. 2517FMCAD&nbsp;</td>
5595        <td>proceedings</td>
5596        <td>&nbsp;</td>
5597        <td>&nbsp;</td>
5598</tr>
5599<tr id="bib_DBLP:conf/fmcad/2002" class="bibtex noshow">
5600<td colspan="7"><b>BibTeX</b>:
5601<pre>
5602@proceedings{DBLP:conf/fmcad/2002,,
5603  title = {Formal Methods in Computer-Aided Design, 4th International Conference, FMCAD 2002, Portland, OR, USA, November 6-8, 2002, Proceedings},
5604  booktitle = {FMCAD},
5605  publisher = {Springer},
5606  year = {2002},
5607  volume = {2517}
5608}
5609</pre></td>
5610</tr>
5611<tr id="DBLP:conf/sefm/2005" class="entry">
5612        <td>&nbsp;Bernhard K. Aichernig and Bernhard Beckert (Ed.)</td>
5613        <td>Third IEEE International Conference on Software Engineering and Formal Methods (SEFM 2005), 7-9 September 2005, Koblenz, Germany <p class="infolinks">[<a href="javascript:toggleInfo('DBLP:conf/sefm/2005','bibtex')">BibTeX</a>]</p></td>
5614        <td>2005</td>
5615        <td>SEFM&nbsp;</td>
5616        <td>proceedings</td>
5617        <td>&nbsp;</td>
5618        <td>&nbsp;</td>
5619</tr>
5620<tr id="bib_DBLP:conf/sefm/2005" class="bibtex noshow">
5621<td colspan="7"><b>BibTeX</b>:
5622<pre>
5623@proceedings{DBLP:conf/sefm/2005,,
5624  title = {Third IEEE International Conference on Software Engineering and Formal Methods (SEFM 2005), 7-9 September 2005, Koblenz, Germany},
5625  booktitle = {SEFM},
5626  publisher = {IEEE Computer Society},
5627  year = {2005}
5628}
5629</pre></td>
5630</tr>
5631<tr id="DBLP:conf/cav/2004" class="entry">
5632        <td>&nbsp;Rajeev Alur and Doron Peled (Ed.)</td>
5633        <td>Computer Aided Verification, 16th International Conference, CAV 2004, Boston, MA, USA, July 13-17, 2004, Proceedings <p class="infolinks">[<a href="javascript:toggleInfo('DBLP:conf/cav/2004','bibtex')">BibTeX</a>]</p></td>
5634        <td>2004</td>
5635        <td><br/>Vol. 3114CAV&nbsp;</td>
5636        <td>proceedings</td>
5637        <td>&nbsp;</td>
5638        <td>&nbsp;</td>
5639</tr>
5640<tr id="bib_DBLP:conf/cav/2004" class="bibtex noshow">
5641<td colspan="7"><b>BibTeX</b>:
5642<pre>
5643@proceedings{DBLP:conf/cav/2004,,
5644  title = {Computer Aided Verification, 16th International Conference, CAV 2004, Boston, MA, USA, July 13-17, 2004, Proceedings},
5645  booktitle = {CAV},
5646  publisher = {Springer},
5647  year = {2004},
5648  volume = {3114}
5649}
5650</pre></td>
5651</tr>
5652<tr id="DBLP:conf/cav/2006" class="entry">
5653        <td>&nbsp;Thomas Ball and Robert B. Jones (Ed.)</td>
5654        <td>CAV'06: Proceedings of 18th International Conference of Computer Aided Verification <p class="infolinks">[<a href="javascript:toggleInfo('DBLP:conf/cav/2006','bibtex')">BibTeX</a>]</p></td>
5655        <td>2006</td>
5656        <td><br/>Vol. 4144CAV&nbsp;</td>
5657        <td>proceedings</td>
5658        <td>&nbsp;</td>
5659        <td>&nbsp;</td>
5660</tr>
5661<tr id="bib_DBLP:conf/cav/2006" class="bibtex noshow">
5662<td colspan="7"><b>BibTeX</b>:
5663<pre>
5664@proceedings{DBLP:conf/cav/2006,,
5665  title = {CAV'06: Proceedings of 18th International Conference of Computer Aided Verification},
5666  booktitle = {CAV},
5667  year = {2006},
5668  volume = {4144}
5669}
5670</pre></td>
5671</tr>
5672<tr id="DBLP:conf/sfm/2006" class="entry">
5673        <td>&nbsp;Marco Bernardo and Alessandro Cimatti (Ed.)</td>
5674        <td>Formal Methods for Hardware Verification, 6th International School on Formal Methods for the Design of Computer, Communication, and Software Systems, SFM 2006, Bertinoro, Italy, May 22-27, 2006, Advanced Lectures <p class="infolinks">[<a href="javascript:toggleInfo('DBLP:conf/sfm/2006','bibtex')">BibTeX</a>]</p></td>
5675        <td>2006</td>
5676        <td><br/>Vol. 3965SFM&nbsp;</td>
5677        <td>proceedings</td>
5678        <td>&nbsp;</td>
5679        <td>&nbsp;</td>
5680</tr>
5681<tr id="bib_DBLP:conf/sfm/2006" class="bibtex noshow">
5682<td colspan="7"><b>BibTeX</b>:
5683<pre>
5684@proceedings{DBLP:conf/sfm/2006,,
5685  title = {Formal Methods for Hardware Verification, 6th International School on Formal Methods for the Design of Computer, Communication, and Software Systems, SFM 2006, Bertinoro, Italy, May 22-27, 2006, Advanced Lectures},
5686  booktitle = {SFM},
5687  publisher = {Springer},
5688  year = {2006},
5689  volume = {3965}
5690}
5691</pre></td>
5692</tr>
5693<tr id="DBLP:conf/cav/2001" class="entry">
5694        <td>&nbsp;G&eacute;rard Berry and Hubert Comon and Alain Finkel (Ed.)</td>
5695        <td>Computer Aided Verification, 13th International Conference, CAV 2001, Paris, France, July 18-22, 2001, Proceedings <p class="infolinks">[<a href="javascript:toggleInfo('DBLP:conf/cav/2001','bibtex')">BibTeX</a>]</p></td>
5696        <td>2001</td>
5697        <td><br/>Vol. 2102CAV&nbsp;</td>
5698        <td>proceedings</td>
5699        <td>&nbsp;</td>
5700        <td>&nbsp;</td>
5701</tr>
5702<tr id="bib_DBLP:conf/cav/2001" class="bibtex noshow">
5703<td colspan="7"><b>BibTeX</b>:
5704<pre>
5705@proceedings{DBLP:conf/cav/2001,,
5706  title = {Computer Aided Verification, 13th International Conference, CAV 2001, Paris, France, July 18-22, 2001, Proceedings},
5707  booktitle = {CAV},
5708  publisher = {Springer},
5709  year = {2001},
5710  volume = {2102}
5711}
5712</pre></td>
5713</tr>
5714<tr id="DBLP:conf/hvc/2006" class="entry">
5715        <td>&nbsp;Eyal Bin and Avi Ziv and Shmuel Ur (Ed.)</td>
5716        <td>Hardware and Software, Verification and Testing, Second International Haifa Verification Conference, HVC 2006, Haifa, Israel, October 23-26, 2006. Revised Selected Papers <p class="infolinks">[<a href="javascript:toggleInfo('DBLP:conf/hvc/2006','bibtex')">BibTeX</a>]</p></td>
5717        <td>2007</td>
5718        <td><br/>Vol. 4383Haifa Verification Conference&nbsp;</td>
5719        <td>proceedings</td>
5720        <td>&nbsp;</td>
5721        <td>&nbsp;</td>
5722</tr>
5723<tr id="bib_DBLP:conf/hvc/2006" class="bibtex noshow">
5724<td colspan="7"><b>BibTeX</b>:
5725<pre>
5726@proceedings{DBLP:conf/hvc/2006,,
5727  title = {Hardware and Software, Verification and Testing, Second International Haifa Verification Conference, HVC 2006, Haifa, Israel, October 23-26, 2006. Revised Selected Papers},
5728  booktitle = {Haifa Verification Conference},
5729  publisher = {Springer},
5730  year = {2007},
5731  volume = {4383}
5732}
5733</pre></td>
5734</tr>
5735<tr id="DBLP:conf/fmco/2005" class="entry">
5736        <td>&nbsp;Frank S. de Boer and Marcello M. Bonsangue and Susanne Graf and Willem P. de Roever (Ed.)</td>
5737        <td>Formal Methods for Components and Objects, 4th International Symposium, FMCO 2005, Amsterdam, The Netherlands, November 1-4, 2005, Revised Lectures <p class="infolinks">[<a href="javascript:toggleInfo('DBLP:conf/fmco/2005','bibtex')">BibTeX</a>]</p></td>
5738        <td>2006</td>
5739        <td><br/>Vol. 4111FMCO&nbsp;</td>
5740        <td>proceedings</td>
5741        <td>&nbsp;</td>
5742        <td>&nbsp;</td>
5743</tr>
5744<tr id="bib_DBLP:conf/fmco/2005" class="bibtex noshow">
5745<td colspan="7"><b>BibTeX</b>:
5746<pre>
5747@proceedings{DBLP:conf/fmco/2005,,
5748  title = {Formal Methods for Components and Objects, 4th International Symposium, FMCO 2005, Amsterdam, The Netherlands, November 1-4, 2005, Revised Lectures},
5749  booktitle = {FMCO},
5750  publisher = {Springer},
5751  year = {2006},
5752  volume = {4111}
5753}
5754</pre></td>
5755</tr>
5756<tr id="DBLP:conf/charme/2005" class="entry">
5757        <td>&nbsp;Dominique Borrione and Wolfgang J. Paul (Ed.)</td>
5758        <td>Correct Hardware Design and Verification Methods, 13th IFIP WG 10.5 Advanced Research Working Conference, CHARME 2005, Saarbr&uuml;cken, Germany, October 3-6, 2005, Proceedings <p class="infolinks">[<a href="javascript:toggleInfo('DBLP:conf/charme/2005','bibtex')">BibTeX</a>]</p></td>
5759        <td>2005</td>
5760        <td><br/>Vol. 3725CHARME&nbsp;</td>
5761        <td>proceedings</td>
5762        <td>&nbsp;</td>
5763        <td>&nbsp;</td>
5764</tr>
5765<tr id="bib_DBLP:conf/charme/2005" class="bibtex noshow">
5766<td colspan="7"><b>BibTeX</b>:
5767<pre>
5768@proceedings{DBLP:conf/charme/2005,,
5769  title = {Correct Hardware Design and Verification Methods, 13th IFIP WG 10.5 Advanced Research Working Conference, CHARME 2005, Saarbr&uuml;cken, Germany, October 3-6, 2005, Proceedings},
5770  booktitle = {CHARME},
5771  publisher = {Springer},
5772  year = {2005},
5773  volume = {3725}
5774}
5775</pre></td>
5776</tr>
5777<tr id="DBLP:conf/cav/2002" class="entry">
5778        <td>&nbsp;Ed Brinksma and Kim Guldstrand Larsen (Ed.)</td>
5779        <td>Computer Aided Verification, 14th International Conference, CAV 2002,Copenhagen, Denmark, July 27-31, 2002, Proceedings <p class="infolinks">[<a href="javascript:toggleInfo('DBLP:conf/cav/2002','bibtex')">BibTeX</a>]</p></td>
5780        <td>2002</td>
5781        <td><br/>Vol. 2404CAV&nbsp;</td>
5782        <td>proceedings</td>
5783        <td>&nbsp;</td>
5784        <td>&nbsp;</td>
5785</tr>
5786<tr id="bib_DBLP:conf/cav/2002" class="bibtex noshow">
5787<td colspan="7"><b>BibTeX</b>:
5788<pre>
5789@proceedings{DBLP:conf/cav/2002,,
5790  title = {Computer Aided Verification, 14th International Conference, CAV 2002,Copenhagen, Denmark, July 27-31, 2002, Proceedings},
5791  booktitle = {CAV},
5792  publisher = {Springer},
5793  year = {2002},
5794  volume = {2404}
5795}
5796</pre></td>
5797</tr>
5798<tr id="DBLP:conf/fase/2005" class="entry">
5799        <td>&nbsp;Maura Cerioli (Ed.)</td>
5800        <td>Fundamental Approaches to Software Engineering, 8th International Conference, FASE 2005, Held as Part of the Joint European Conferences on Theory and Practice of Software, ETAPS 2005, Edinburgh, UK, April 4-8, 2005, Proceedings <p class="infolinks">[<a href="javascript:toggleInfo('DBLP:conf/fase/2005','bibtex')">BibTeX</a>]</p></td>
5801        <td>2005</td>
5802        <td><br/>Vol. 3442FASE&nbsp;</td>
5803        <td>proceedings</td>
5804        <td>&nbsp;</td>
5805        <td>&nbsp;</td>
5806</tr>
5807<tr id="bib_DBLP:conf/fase/2005" class="bibtex noshow">
5808<td colspan="7"><b>BibTeX</b>:
5809<pre>
5810@proceedings{DBLP:conf/fase/2005,,
5811  title = {Fundamental Approaches to Software Engineering, 8th International Conference, FASE 2005, Held as Part of the Joint European Conferences on Theory and Practice of Software, ETAPS 2005, Edinburgh, UK, April 4-8, 2005, Proceedings},
5812  booktitle = {FASE},
5813  publisher = {Springer},
5814  year = {2005},
5815  volume = {3442}
5816}
5817</pre></td>
5818</tr>
5819<tr id="DBLP:conf/lpar/2008" class="entry">
5820        <td>&nbsp;Iliano Cervesato and Helmut Veith and Andrei Voronkov (Ed.)</td>
5821        <td>Logic for Programming, Artificial Intelligence, and Reasoning, 15th International Conference, LPAR 2008, Doha, Qatar, November 22-27, 2008. Proceedings <p class="infolinks">[<a href="javascript:toggleInfo('DBLP:conf/lpar/2008','bibtex')">BibTeX</a>]</p></td>
5822        <td>2008</td>
5823        <td><br/>Vol. 5330LPAR&nbsp;</td>
5824        <td>proceedings</td>
5825        <td>&nbsp;</td>
5826        <td>&nbsp;</td>
5827</tr>
5828<tr id="bib_DBLP:conf/lpar/2008" class="bibtex noshow">
5829<td colspan="7"><b>BibTeX</b>:
5830<pre>
5831@proceedings{DBLP:conf/lpar/2008,,
5832  title = {Logic for Programming, Artificial Intelligence, and Reasoning, 15th International Conference, LPAR 2008, Doha, Qatar, November 22-27, 2008. Proceedings},
5833  booktitle = {LPAR},
5834  publisher = {Springer},
5835  year = {2008},
5836  volume = {5330}
5837}
5838</pre></td>
5839</tr>
5840<tr id="DBLP:conf/vmcai/2005" class="entry">
5841        <td>&nbsp;Radhia Cousot (Ed.)</td>
5842        <td>Verification, Model Checking, and Abstract Interpretation, 6th International Conference, VMCAI 2005, Paris, France, January 17-19, 2005, Proceedings <p class="infolinks">[<a href="javascript:toggleInfo('DBLP:conf/vmcai/2005','bibtex')">BibTeX</a>]</p></td>
5843        <td>2005</td>
5844        <td><br/>Vol. 3385VMCAI&nbsp;</td>
5845        <td>proceedings</td>
5846        <td>&nbsp;</td>
5847        <td>&nbsp;</td>
5848</tr>
5849<tr id="bib_DBLP:conf/vmcai/2005" class="bibtex noshow">
5850<td colspan="7"><b>BibTeX</b>:
5851<pre>
5852@proceedings{DBLP:conf/vmcai/2005,,
5853  title = {Verification, Model Checking, and Abstract Interpretation, 6th International Conference, VMCAI 2005, Paris, France, January 17-19, 2005, Proceedings},
5854  booktitle = {VMCAI},
5855  publisher = {Springer},
5856  year = {2005},
5857  volume = {3385}
5858}
5859</pre></td>
5860</tr>
5861<tr id="DBLP:conf/tcs/1981" class="entry">
5862        <td>&nbsp;Peter Deussen (Ed.)</td>
5863        <td>Theoretical Computer Science, 5th GI-Conference, Karlsruhe, Germany, March 23-25, 1981, Proceedings <p class="infolinks">[<a href="javascript:toggleInfo('DBLP:conf/tcs/1981','bibtex')">BibTeX</a>]</p></td>
5864        <td>1981</td>
5865        <td><br/>Vol. 104Theoretical Computer Science&nbsp;</td>
5866        <td>proceedings</td>
5867        <td>&nbsp;</td>
5868        <td>&nbsp;</td>
5869</tr>
5870<tr id="bib_DBLP:conf/tcs/1981" class="bibtex noshow">
5871<td colspan="7"><b>BibTeX</b>:
5872<pre>
5873@proceedings{DBLP:conf/tcs/1981,,
5874  title = {Theoretical Computer Science, 5th GI-Conference, Karlsruhe, Germany, March 23-25, 1981, Proceedings},
5875  booktitle = {Theoretical Computer Science},
5876  publisher = {Springer},
5877  year = {1981},
5878  volume = {104}
5879}
5880</pre></td>
5881</tr>
5882<tr id="DBLP:conf/vmcai/2006" class="entry">
5883        <td>&nbsp;E. Allen Emerson and Kedar S. Namjoshi (Ed.)</td>
5884        <td>Verification, Model Checking, and Abstract Interpretation, 7th International Conference, VMCAI 2006, Charleston, SC, USA, January 8-10, 2006, Proceedings <p class="infolinks">[<a href="javascript:toggleInfo('DBLP:conf/vmcai/2006','bibtex')">BibTeX</a>]</p></td>
5885        <td>2006</td>
5886        <td><br/>Vol. 3855VMCAI&nbsp;</td>
5887        <td>proceedings</td>
5888        <td>&nbsp;</td>
5889        <td>&nbsp;</td>
5890</tr>
5891<tr id="bib_DBLP:conf/vmcai/2006" class="bibtex noshow">
5892<td colspan="7"><b>BibTeX</b>:
5893<pre>
5894@proceedings{DBLP:conf/vmcai/2006,,
5895  title = {Verification, Model Checking, and Abstract Interpretation, 7th International Conference, VMCAI 2006, Charleston, SC, USA, January 8-10, 2006, Proceedings},
5896  booktitle = {VMCAI},
5897  publisher = {Springer},
5898  year = {2006},
5899  volume = {3855}
5900}
5901</pre></td>
5902</tr>
5903<tr id="DBLP:conf/cav/2000" class="entry">
5904        <td>&nbsp;E.A. Emerson and A.P. Sistla (Ed.)</td>
5905        <td>Computer Aided Verification, 12th International Conference, CAV 2000, Chicago, IL, USA, July 15-19, 2000, Proceedings <p class="infolinks">[<a href="javascript:toggleInfo('DBLP:conf/cav/2000','bibtex')">BibTeX</a>]</p></td>
5906        <td>2000</td>
5907        <td><br/>Vol. 1855CAV&nbsp;</td>
5908        <td>proceedings</td>
5909        <td>&nbsp;</td>
5910        <td>&nbsp;</td>
5911</tr>
5912<tr id="bib_DBLP:conf/cav/2000" class="bibtex noshow">
5913<td colspan="7"><b>BibTeX</b>:
5914<pre>
5915@proceedings{DBLP:conf/cav/2000,,
5916  title = {Computer Aided Verification, 12th International Conference, CAV 2000, Chicago, IL, USA, July 15-19, 2000, Proceedings},
5917  booktitle = {CAV},
5918  publisher = {Springer},
5919  year = {2000},
5920  volume = {1855}
5921}
5922</pre></td>
5923</tr>
5924<tr id="DBLP:conf/apn/2002" class="entry">
5925        <td>&nbsp;Javier Esparza and Charles Lakos (Ed.)</td>
5926        <td>Applications and Theory of Petri Nets 2002, 23rd International Conference, ICATPN 2002, Adelaide, Australia, June 24-30, 2002, Proceedings <p class="infolinks">[<a href="javascript:toggleInfo('DBLP:conf/apn/2002','bibtex')">BibTeX</a>]</p></td>
5927        <td>2002</td>
5928        <td><br/>Vol. 2360ICATPN&nbsp;</td>
5929        <td>proceedings</td>
5930        <td>&nbsp;</td>
5931        <td>&nbsp;</td>
5932</tr>
5933<tr id="bib_DBLP:conf/apn/2002" class="bibtex noshow">
5934<td colspan="7"><b>BibTeX</b>:
5935<pre>
5936@proceedings{DBLP:conf/apn/2002,,
5937  title = {Applications and Theory of Petri Nets 2002, 23rd International Conference, ICATPN 2002, Adelaide, Australia, June 24-30, 2002, Proceedings},
5938  booktitle = {ICATPN},
5939  publisher = {Springer},
5940  year = {2002},
5941  volume = {2360}
5942}
5943</pre></td>
5944</tr>
5945<tr id="DBLP:conf/charme/2003" class="entry">
5946        <td>&nbsp;Daniel Geist and Enrico Tronci (Ed.)</td>
5947        <td>Correct Hardware Design and Verification Methods CHARME 2003 <p class="infolinks">[<a href="javascript:toggleInfo('DBLP:conf/charme/2003','bibtex')">BibTeX</a>]</p></td>
5948        <td>2003</td>
5949        <td><br/>Vol. 2860&nbsp;</td>
5950        <td>proceedings</td>
5951        <td>&nbsp;</td>
5952        <td>&nbsp;</td>
5953</tr>
5954<tr id="bib_DBLP:conf/charme/2003" class="bibtex noshow">
5955<td colspan="7"><b>BibTeX</b>:
5956<pre>
5957@proceedings{DBLP:conf/charme/2003,,
5958  title = {Correct Hardware Design and Verification Methods CHARME 2003},
5959  publisher = {Springer},
5960  year = {2003},
5961  volume = {2860}
5962}
5963</pre></td>
5964</tr>
5965<tr id="DBLP:conf/date/2006p" class="entry">
5966        <td>&nbsp;Georges G. E. Gielen (Ed.)</td>
5967        <td>Proceedings of the Conference on Design, Automation and Test in Europe, DATE 2006, Munich, Germany, March 6-10, 2006 <p class="infolinks">[<a href="javascript:toggleInfo('DBLP:conf/date/2006p','bibtex')">BibTeX</a>]</p></td>
5968        <td>2006</td>
5969        <td>DATE&nbsp;</td>
5970        <td>proceedings</td>
5971        <td>&nbsp;</td>
5972        <td>&nbsp;</td>
5973</tr>
5974<tr id="bib_DBLP:conf/date/2006p" class="bibtex noshow">
5975<td colspan="7"><b>BibTeX</b>:
5976<pre>
5977@proceedings{DBLP:conf/date/2006p,,
5978  title = {Proceedings of the Conference on Design, Automation and Test in Europe, DATE 2006, Munich, Germany, March 6-10, 2006},
5979  booktitle = {DATE},
5980  publisher = {European Design and Automation Association, Leuven, Belgium},
5981  year = {2006}
5982}
5983</pre></td>
5984</tr>
5985<tr id="DBLP:conf/sat/2003" class="entry">
5986        <td>&nbsp;Enrico Giunchiglia and Armando Tacchella (Ed.)</td>
5987        <td>Theory and Applications of Satisfiability Testing, 6th International Conference, SAT 2003. Santa Margherita Ligure, Italy, May 5-8, 2003 Selected Revised Papers <p class="infolinks">[<a href="javascript:toggleInfo('DBLP:conf/sat/2003','bibtex')">BibTeX</a>]</p></td>
5988        <td>2004</td>
5989        <td><br/>Vol. 2919SAT&nbsp;</td>
5990        <td>proceedings</td>
5991        <td>&nbsp;</td>
5992        <td>&nbsp;</td>
5993</tr>
5994<tr id="bib_DBLP:conf/sat/2003" class="bibtex noshow">
5995<td colspan="7"><b>BibTeX</b>:
5996<pre>
5997@proceedings{DBLP:conf/sat/2003,,
5998  title = {Theory and Applications of Satisfiability Testing, 6th International Conference, SAT 2003. Santa Margherita Ligure, Italy, May 5-8, 2003 Selected Revised Papers},
5999  booktitle = {SAT},
6000  publisher = {Springer},
6001  year = {2004},
6002  volume = {2919}
6003}
6004</pre></td>
6005</tr>
6006<tr id="DBLP:conf/frocos/2005" class="entry">
6007        <td>&nbsp;Bernhard Gramlich (Ed.)</td>
6008        <td>Frontiers of Combining Systems, 5th International Workshop, FroCoS 2005, Vienna, Austria, September 19-21, 2005, Proceedings <p class="infolinks">[<a href="javascript:toggleInfo('DBLP:conf/frocos/2005','bibtex')">BibTeX</a>]</p></td>
6009        <td>2005</td>
6010        <td><br/>Vol. 3717FroCoS&nbsp;</td>
6011        <td>proceedings</td>
6012        <td>&nbsp;</td>
6013        <td>&nbsp;</td>
6014</tr>
6015<tr id="bib_DBLP:conf/frocos/2005" class="bibtex noshow">
6016<td colspan="7"><b>BibTeX</b>:
6017<pre>
6018@proceedings{DBLP:conf/frocos/2005,,
6019  title = {Frontiers of Combining Systems, 5th International Workshop, FroCoS 2005, Vienna, Austria, September 19-21, 2005, Proceedings},
6020  booktitle = {FroCoS},
6021  publisher = {Springer},
6022  year = {2005},
6023  volume = {3717}
6024}
6025</pre></td>
6026</tr>
6027<tr id="DBLP:conf/cav/1997" class="entry">
6028        <td>&nbsp;Orna Grumberg (Ed.)</td>
6029        <td>Computer Aided Verification, 9th International Conference, CAV '97, Haifa, Israel, June 22-25, 1997, Proceedings <p class="infolinks">[<a href="javascript:toggleInfo('DBLP:conf/cav/1997','bibtex')">BibTeX</a>]</p></td>
6030        <td>1997</td>
6031        <td><br/>Vol. 1254CAV&nbsp;</td>
6032        <td>proceedings</td>
6033        <td>&nbsp;</td>
6034        <td>&nbsp;</td>
6035</tr>
6036<tr id="bib_DBLP:conf/cav/1997" class="bibtex noshow">
6037<td colspan="7"><b>BibTeX</b>:
6038<pre>
6039@proceedings{DBLP:conf/cav/1997,,
6040  title = {Computer Aided Verification, 9th International Conference, CAV '97, Haifa, Israel, June 22-25, 1997, Proceedings},
6041  booktitle = {CAV},
6042  publisher = {Springer},
6043  year = {1997},
6044  volume = {1254}
6045}
6046</pre></td>
6047</tr>
6048<tr id="DBLP:conf/cav/1999" class="entry">
6049        <td>&nbsp;Nicolas Halbwachs and Doron Peled (Ed.)</td>
6050        <td>Computer Aided Verification, 11th International Conference, CAV '99, Trento, Italy, July 6-10, 1999, Proceedings <p class="infolinks">[<a href="javascript:toggleInfo('DBLP:conf/cav/1999','bibtex')">BibTeX</a>]</p></td>
6051        <td>1999</td>
6052        <td><br/>Vol. 1633CAV&nbsp;</td>
6053        <td>proceedings</td>
6054        <td>&nbsp;</td>
6055        <td>&nbsp;</td>
6056</tr>
6057<tr id="bib_DBLP:conf/cav/1999" class="bibtex noshow">
6058<td colspan="7"><b>BibTeX</b>:
6059<pre>
6060@proceedings{DBLP:conf/cav/1999,,
6061  title = {Computer Aided Verification, 11th International Conference, CAV '99, Trento, Italy, July 6-10, 1999, Proceedings},
6062  booktitle = {CAV},
6063  publisher = {Springer},
6064  year = {1999},
6065  volume = {1633}
6066}
6067</pre></td>
6068</tr>
6069<tr id="DBLP:conf/tacas/2005" class="entry">
6070        <td>&nbsp;Nicolas Halbwachs and Lenore D. Zuck (Ed.)</td>
6071        <td>Tools and Algorithms for the Construction and Analysis of Systems, 11th International Conference, TACAS 2005, Held as Part of the Joint European Conferences on Theory and Practice of Software, ETAPS 2005, Edinburgh, UK, April 4-8, 2005, Proceedings <p class="infolinks">[<a href="javascript:toggleInfo('DBLP:conf/tacas/2005','bibtex')">BibTeX</a>]</p></td>
6072        <td>2005</td>
6073        <td><br/>Vol. 3440TACAS&nbsp;</td>
6074        <td>proceedings</td>
6075        <td>&nbsp;</td>
6076        <td>&nbsp;</td>
6077</tr>
6078<tr id="bib_DBLP:conf/tacas/2005" class="bibtex noshow">
6079<td colspan="7"><b>BibTeX</b>:
6080<pre>
6081@proceedings{DBLP:conf/tacas/2005,,
6082  title = {Tools and Algorithms for the Construction and Analysis of Systems, 11th International Conference, TACAS 2005, Held as Part of the Joint European Conferences on Theory and Practice of Software, ETAPS 2005, Edinburgh, UK, April 4-8, 2005, Proceedings},
6083  booktitle = {TACAS},
6084  publisher = {Springer},
6085  year = {2005},
6086  volume = {3440}
6087}
6088</pre></td>
6089</tr>
6090<tr id="DBLP:conf/iccad/2006" class="entry">
6091        <td>&nbsp;Soha Hassoun (Ed.)</td>
6092        <td>2006 International Conference on Computer-Aided Design (ICCAD'06), November 5-9, 2006, San Jose, CA, USA <p class="infolinks">[<a href="javascript:toggleInfo('DBLP:conf/iccad/2006','bibtex')">BibTeX</a>]</p></td>
6093        <td>2006</td>
6094        <td>ICCAD&nbsp;</td>
6095        <td>proceedings</td>
6096        <td>&nbsp;</td>
6097        <td>&nbsp;</td>
6098</tr>
6099<tr id="bib_DBLP:conf/iccad/2006" class="bibtex noshow">
6100<td colspan="7"><b>BibTeX</b>:
6101<pre>
6102@proceedings{DBLP:conf/iccad/2006,,
6103  title = {2006 International Conference on Computer-Aided Design (ICCAD'06), November 5-9, 2006, San Jose, CA, USA},
6104  booktitle = {ICCAD},
6105  publisher = {ACM},
6106  year = {2006}
6107}
6108</pre></td>
6109</tr>
6110<tr id="DBLP:conf/tacas/2006" class="entry">
6111        <td>&nbsp;Holger Hermanns and Jens Palsberg (Ed.)</td>
6112        <td>Tools and Algorithms for the Construction and Analysis of Systems, 12th International Conference, TACAS 2006 Held as Part of the Joint European Conferences on Theory and Practice of Software, ETAPS 2006, Vienna, Austria, March 25 - April 2, 2006, Proceedings <p class="infolinks">[<a href="javascript:toggleInfo('DBLP:conf/tacas/2006','bibtex')">BibTeX</a>]</p></td>
6113        <td>2006</td>
6114        <td><br/>Vol. 3920TACAS&nbsp;</td>
6115        <td>proceedings</td>
6116        <td>&nbsp;</td>
6117        <td>&nbsp;</td>
6118</tr>
6119<tr id="bib_DBLP:conf/tacas/2006" class="bibtex noshow">
6120<td colspan="7"><b>BibTeX</b>:
6121<pre>
6122@proceedings{DBLP:conf/tacas/2006,,
6123  title = {Tools and Algorithms for the Construction and Analysis of Systems, 12th International Conference, TACAS 2006 Held as Part of the Joint European Conferences on Theory and Practice of Software, ETAPS 2006, Vienna, Austria, March 25 - April 2, 2006, Proceedings},
6124  booktitle = {TACAS},
6125  publisher = {Springer},
6126  year = {2006},
6127  volume = {3920}
6128}
6129</pre></td>
6130</tr>
6131<tr id="DBLP:conf/cav/1998" class="entry">
6132        <td>&nbsp;Alan J. Hu and Moshe Y. Vardi (Ed.)</td>
6133        <td>Computer Aided Verification, 10th International Conference, CAV '98, Vancouver, BC, Canada, June 28 - July 2, 1998, Proceedings <p class="infolinks">[<a href="javascript:toggleInfo('DBLP:conf/cav/1998','bibtex')">BibTeX</a>]</p></td>
6134        <td>1998</td>
6135        <td><br/>Vol. 1427CAV&nbsp;</td>
6136        <td>proceedings</td>
6137        <td>&nbsp;</td>
6138        <td>&nbsp;</td>
6139</tr>
6140<tr id="bib_DBLP:conf/cav/1998" class="bibtex noshow">
6141<td colspan="7"><b>BibTeX</b>:
6142<pre>
6143@proceedings{DBLP:conf/cav/1998,,
6144  title = {Computer Aided Verification, 10th International Conference, CAV '98, Vancouver, BC, Canada, June 28 - July 2, 1998, Proceedings},
6145  booktitle = {CAV},
6146  publisher = {Springer},
6147  year = {1998},
6148  volume = {1427}
6149}
6150</pre></td>
6151</tr>
6152<tr id="DBLP:conf/tacas/2004" class="entry">
6153        <td>&nbsp;Kurt Jensen and Andreas Podelski (Ed.)</td>
6154        <td>Tools and Algorithms for the Construction and Analysis of Systems, 10th International Conference, TACAS 2004, Held as Part of the Joint European Conferences on Theory and Practice of Software, ETAPS 2004, Barcelona, Spain, March 29 - April 2, 2004, Proceedings <p class="infolinks">[<a href="javascript:toggleInfo('DBLP:conf/tacas/2004','bibtex')">BibTeX</a>]</p></td>
6155        <td>2004</td>
6156        <td><br/>Vol. 2988TACAS&nbsp;</td>
6157        <td>proceedings</td>
6158        <td>&nbsp;</td>
6159        <td>&nbsp;</td>
6160</tr>
6161<tr id="bib_DBLP:conf/tacas/2004" class="bibtex noshow">
6162<td colspan="7"><b>BibTeX</b>:
6163<pre>
6164@proceedings{DBLP:conf/tacas/2004,,
6165  title = {Tools and Algorithms for the Construction and Analysis of Systems, 10th International Conference, TACAS 2004, Held as Part of the Joint European Conferences on Theory and Practice of Software, ETAPS 2004, Barcelona, Spain, March 29 - April 2, 2004, Proceedings},
6166  booktitle = {TACAS},
6167  publisher = {Springer},
6168  year = {2004},
6169  volume = {2988}
6170}
6171</pre></td>
6172</tr>
6173<tr id="DBLP:conf/vmcai/2011" class="entry">
6174        <td>&nbsp;Ranjit Jhala and David A. Schmidt (Ed.)</td>
6175        <td>Verification, Model Checking, and Abstract Interpretation - 12th International Conference, VMCAI 2011, Austin, TX, USA, January 23-25, 2011. Proceedings <p class="infolinks">[<a href="javascript:toggleInfo('DBLP:conf/vmcai/2011','bibtex')">BibTeX</a>]</p></td>
6176        <td>2011</td>
6177        <td><br/>Vol. 6538VMCAI&nbsp;</td>
6178        <td>proceedings</td>
6179        <td>&nbsp;</td>
6180        <td>&nbsp;</td>
6181</tr>
6182<tr id="bib_DBLP:conf/vmcai/2011" class="bibtex noshow">
6183<td colspan="7"><b>BibTeX</b>:
6184<pre>
6185@proceedings{DBLP:conf/vmcai/2011,,
6186  title = {Verification, Model Checking, and Abstract Interpretation - 12th International Conference, VMCAI 2011, Austin, TX, USA, January 23-25, 2011. Proceedings},
6187  booktitle = {VMCAI},
6188  publisher = {Springer},
6189  year = {2011},
6190  volume = {6538}
6191}
6192</pre></td>
6193</tr>
6194<tr id="DBLP:conf/cav/2003" class="entry">
6195        <td>&nbsp;Warren A. Hunt Jr. and Fabio Somenzi (Ed.)</td>
6196        <td>Computer Aided Verification, 15th International Conference, CAV 2003, Boulder, CO, USA, July 8-12, 2003, Proceedings <p class="infolinks">[<a href="javascript:toggleInfo('DBLP:conf/cav/2003','bibtex')">BibTeX</a>]</p></td>
6197        <td>2003</td>
6198        <td><br/>Vol. 2725CAV&nbsp;</td>
6199        <td>proceedings</td>
6200        <td>&nbsp;</td>
6201        <td>&nbsp;</td>
6202</tr>
6203<tr id="bib_DBLP:conf/cav/2003" class="bibtex noshow">
6204<td colspan="7"><b>BibTeX</b>:
6205<pre>
6206@proceedings{DBLP:conf/cav/2003,,
6207  title = {Computer Aided Verification, 15th International Conference, CAV 2003, Boulder, CO, USA, July 8-12, 2003, Proceedings},
6208  booktitle = {CAV},
6209  publisher = {Springer},
6210  year = {2003},
6211  volume = {2725}
6212}
6213</pre></td>
6214</tr>
6215<tr id="DBLP:conf/dac/2005" class="entry">
6216        <td>&nbsp;William H. Joyner Jr. and Grant Martin and Andrew B. Kahng (Ed.)</td>
6217        <td>Proceedings of the 42nd Design Automation Conference, DAC 2005, San Diego, CA, USA, June 13-17, 2005 <p class="infolinks">[<a href="javascript:toggleInfo('DBLP:conf/dac/2005','bibtex')">BibTeX</a>]</p></td>
6218        <td>2005</td>
6219        <td>DAC&nbsp;</td>
6220        <td>proceedings</td>
6221        <td>&nbsp;</td>
6222        <td>&nbsp;</td>
6223</tr>
6224<tr id="bib_DBLP:conf/dac/2005" class="bibtex noshow">
6225<td colspan="7"><b>BibTeX</b>:
6226<pre>
6227@proceedings{DBLP:conf/dac/2005,,
6228  title = {Proceedings of the 42nd Design Automation Conference, DAC 2005, San Diego, CA, USA, June 13-17, 2005},
6229  booktitle = {DAC},
6230  publisher = {ACM},
6231  year = {2005}
6232}
6233</pre></td>
6234</tr>
6235<tr id="DBLP:conf/lop/1981" class="entry">
6236        <td>&nbsp;Dexter Kozen (Ed.)</td>
6237        <td>Logic of Programs, Workshop <p class="infolinks">[<a href="javascript:toggleInfo('DBLP:conf/lop/1981','bibtex')">BibTeX</a>]</p></td>
6238        <td>1982</td>
6239        <td><br/>Vol. 131Logic of Programs&nbsp;</td>
6240        <td>proceedings</td>
6241        <td>&nbsp;</td>
6242        <td>&nbsp;</td>
6243</tr>
6244<tr id="bib_DBLP:conf/lop/1981" class="bibtex noshow">
6245<td colspan="7"><b>BibTeX</b>:
6246<pre>
6247@proceedings{DBLP:conf/lop/1981,,
6248  title = {Logic of Programs, Workshop},
6249  booktitle = {Logic of Programs},
6250  publisher = {Springer},
6251  year = {1982},
6252  volume = {131}
6253}
6254</pre></td>
6255</tr>
6256<tr id="DBLP:conf/dac/2004" class="entry">
6257        <td>&nbsp;Sharad Malik and Limor Fix and Andrew B. Kahng (Ed.)</td>
6258        <td>Proceedings of the 41th Design Automation Conference, DAC 2004, San Diego, CA, USA, June 7-11, 2004 <p class="infolinks">[<a href="javascript:toggleInfo('DBLP:conf/dac/2004','bibtex')">BibTeX</a>]</p></td>
6259        <td>2004</td>
6260        <td>DAC&nbsp;</td>
6261        <td>proceedings</td>
6262        <td>&nbsp;</td>
6263        <td>&nbsp;</td>
6264</tr>
6265<tr id="bib_DBLP:conf/dac/2004" class="bibtex noshow">
6266<td colspan="7"><b>BibTeX</b>:
6267<pre>
6268@proceedings{DBLP:conf/dac/2004,,
6269  title = {Proceedings of the 41th Design Automation Conference, DAC 2004, San Diego, CA, USA, June 7-11, 2004},
6270  booktitle = {DAC},
6271  publisher = {ACM},
6272  year = {2004}
6273}
6274</pre></td>
6275</tr>
6276<tr id="DBLP:conf/birthday/2010pnueli" class="entry">
6277        <td>&nbsp;Zohar Manna and Doron Peled (Ed.)</td>
6278        <td>Time for Verification, Essays in Memory of Amir Pnueli <p class="infolinks">[<a href="javascript:toggleInfo('DBLP:conf/birthday/2010pnueli','bibtex')">BibTeX</a>]</p></td>
6279        <td>2010</td>
6280        <td><br/>Vol. 6200Essays in Memory of Amir Pnueli&nbsp;</td>
6281        <td>proceedings</td>
6282        <td>&nbsp;</td>
6283        <td>&nbsp;</td>
6284</tr>
6285<tr id="bib_DBLP:conf/birthday/2010pnueli" class="bibtex noshow">
6286<td colspan="7"><b>BibTeX</b>:
6287<pre>
6288@proceedings{DBLP:conf/birthday/2010pnueli,,
6289  title = {Time for Verification, Essays in Memory of Amir Pnueli},
6290  booktitle = {Essays in Memory of Amir Pnueli},
6291  publisher = {Springer},
6292  year = {2010},
6293  volume = {6200}
6294}
6295</pre></td>
6296</tr>
6297<tr id="DBLP:conf/tacas/2001" class="entry">
6298        <td>&nbsp;Tiziana Margaria and Wang Yi (Ed.)</td>
6299        <td>Tools and Algorithms for the Construction and Analysis of Systems, 7th International Conference, TACAS 2001 Held as Part of the Joint European Conferences on Theory and Practice of Software, ETAPS 2001 Genova, Italy, April 2-6, 2001, Proceedings <p class="infolinks">[<a href="javascript:toggleInfo('DBLP:conf/tacas/2001','bibtex')">BibTeX</a>]</p></td>
6300        <td>2001</td>
6301        <td><br/>Vol. 2031TACAS&nbsp;</td>
6302        <td>proceedings</td>
6303        <td>&nbsp;</td>
6304        <td>&nbsp;</td>
6305</tr>
6306<tr id="bib_DBLP:conf/tacas/2001" class="bibtex noshow">
6307<td colspan="7"><b>BibTeX</b>:
6308<pre>
6309@proceedings{DBLP:conf/tacas/2001,,
6310  title = {Tools and Algorithms for the Construction and Analysis of Systems, 7th International Conference, TACAS 2001 Held as Part of the Joint European Conferences on Theory and Practice of Software, ETAPS 2001 Genova, Italy, April 2-6, 2001, Proceedings},
6311  booktitle = {TACAS},
6312  publisher = {Springer},
6313  year = {2001},
6314  volume = {2031}
6315}
6316</pre></td>
6317</tr>
6318<tr id="DBLP:conf/sbmf/2009" class="entry">
6319        <td>&nbsp;Marcel Vinicius Medeiros Oliveira and Jim Woodcock (Ed.)</td>
6320        <td>Formal Methods: Foundations and Applications, 12th Brazilian Symposium on Formal Methods, SBMF 2009, Gramado, Brazil, August 19-21, 2009, Revised Selected Papers <p class="infolinks">[<a href="javascript:toggleInfo('DBLP:conf/sbmf/2009','bibtex')">BibTeX</a>]</p></td>
6321        <td>2009</td>
6322        <td><br/>Vol. 5902SBMF&nbsp;</td>
6323        <td>proceedings</td>
6324        <td>&nbsp;</td>
6325        <td>&nbsp;</td>
6326</tr>
6327<tr id="bib_DBLP:conf/sbmf/2009" class="bibtex noshow">
6328<td colspan="7"><b>BibTeX</b>:
6329<pre>
6330@proceedings{DBLP:conf/sbmf/2009,,
6331  title = {Formal Methods: Foundations and Applications, 12th Brazilian Symposium on Formal Methods, SBMF 2009, Gramado, Brazil, August 19-21, 2009, Revised Selected Papers},
6332  booktitle = {SBMF},
6333  publisher = {Springer},
6334  year = {2009},
6335  volume = {5902}
6336}
6337</pre></td>
6338</tr>
6339<tr id="DBLP:conf/concur/2000" class="entry">
6340        <td>&nbsp;Catuscia Palamidessi (Ed.)</td>
6341        <td>CONCUR 2000 - Concurrency Theory, 11th International Conference, University Park, PA, USA, August 22-25, 2000, Proceedings <p class="infolinks">[<a href="javascript:toggleInfo('DBLP:conf/concur/2000','bibtex')">BibTeX</a>]</p></td>
6342        <td>2000</td>
6343        <td><br/>Vol. 1877CONCUR&nbsp;</td>
6344        <td>proceedings</td>
6345        <td>&nbsp;</td>
6346        <td>&nbsp;</td>
6347</tr>
6348<tr id="bib_DBLP:conf/concur/2000" class="bibtex noshow">
6349<td colspan="7"><b>BibTeX</b>:
6350<pre>
6351@proceedings{DBLP:conf/concur/2000,,
6352  title = {CONCUR 2000 - Concurrency Theory, 11th International Conference, University Park, PA, USA, August 22-25, 2000, Proceedings},
6353  booktitle = {CONCUR},
6354  publisher = {Springer},
6355  year = {2000},
6356  volume = {1877}
6357}
6358</pre></td>
6359</tr>
6360<tr id="DBLP:conf/tacas/2008" class="entry">
6361        <td>&nbsp;C. R. Ramakrishnan and Jakob Rehof (Ed.)</td>
6362        <td>Tools and Algorithms for the Construction and Analysis of Systems, 14th International Conference, TACAS 2008, Held as Part of the Joint European Conferences on Theory and Practice of Software, ETAPS 2008, Budapest, Hungary, March 29-April 6, 2008. Proceedings <p class="infolinks">[<a href="javascript:toggleInfo('DBLP:conf/tacas/2008','bibtex')">BibTeX</a>]</p></td>
6363        <td>2008</td>
6364        <td><br/>Vol. 4963TACAS&nbsp;</td>
6365        <td>proceedings</td>
6366        <td>&nbsp;</td>
6367        <td>&nbsp;</td>
6368</tr>
6369<tr id="bib_DBLP:conf/tacas/2008" class="bibtex noshow">
6370<td colspan="7"><b>BibTeX</b>:
6371<pre>
6372@proceedings{DBLP:conf/tacas/2008,,
6373  title = {Tools and Algorithms for the Construction and Analysis of Systems, 14th International Conference, TACAS 2008, Held as Part of the Joint European Conferences on Theory and Practice of Software, ETAPS 2008, Budapest, Hungary, March 29-April 6, 2008. Proceedings},
6374  booktitle = {TACAS},
6375  publisher = {Springer},
6376  year = {2008},
6377  volume = {4963}
6378}
6379</pre></td>
6380</tr>
6381<tr id="DBLP:conf/compos/1997" class="entry">
6382        <td>&nbsp;Willem P. de Roever and Hans Langmaack and Amir Pnueli (Ed.)</td>
6383        <td>Compositionality: The Significant Difference, International Symposium, COMPOS'97, Bad Malente, Germany, September 8-12, 1997. Revised Lectures <p class="infolinks">[<a href="javascript:toggleInfo('DBLP:conf/compos/1997','bibtex')">BibTeX</a>]</p></td>
6384        <td>1998</td>
6385        <td><br/>Vol. 1536COMPOS&nbsp;</td>
6386        <td>proceedings</td>
6387        <td>&nbsp;</td>
6388        <td>&nbsp;</td>
6389</tr>
6390<tr id="bib_DBLP:conf/compos/1997" class="bibtex noshow">
6391<td colspan="7"><b>BibTeX</b>:
6392<pre>
6393@proceedings{DBLP:conf/compos/1997,,
6394  title = {Compositionality: The Significant Difference, International Symposium, COMPOS'97, Bad Malente, Germany, September 8-12, 1997. Revised Lectures},
6395  booktitle = {COMPOS},
6396  publisher = {Springer},
6397  year = {1998},
6398  volume = {1536}
6399}
6400</pre></td>
6401</tr>
6402<tr id="DBLP:conf/dac/2006" class="entry">
6403        <td>&nbsp;Ellen Sentovich (Ed.)</td>
6404        <td>Proceedings of the 43rd Design Automation Conference, DAC 2006, San Francisco, CA, USA, July 24-28, 2006 <p class="infolinks">[<a href="javascript:toggleInfo('DBLP:conf/dac/2006','bibtex')">BibTeX</a>]</p></td>
6405        <td>2006</td>
6406        <td>DAC&nbsp;</td>
6407        <td>proceedings</td>
6408        <td>&nbsp;</td>
6409        <td>&nbsp;</td>
6410</tr>
6411<tr id="bib_DBLP:conf/dac/2006" class="bibtex noshow">
6412<td colspan="7"><b>BibTeX</b>:
6413<pre>
6414@proceedings{DBLP:conf/dac/2006,,
6415  title = {Proceedings of the 43rd Design Automation Conference, DAC 2006, San Francisco, CA, USA, July 24-28, 2006},
6416  booktitle = {DAC},
6417  publisher = {ACM},
6418  year = {2006}
6419}
6420</pre></td>
6421</tr>
6422<tr id="DBLP:conf/tacas/1998" class="entry">
6423        <td>&nbsp;Bernhard Steffen (Ed.)</td>
6424        <td>Tools and Algorithms for Construction and Analysis of Systems, 4th International Conference, TACAS '98, Held as Part of the European Joint Conferences on the Theory and Practice of Software, ETAPS'98, Lisbon, Portugal, March 28 - April 4, 1998, Proceedings <p class="infolinks">[<a href="javascript:toggleInfo('DBLP:conf/tacas/1998','bibtex')">BibTeX</a>]</p></td>
6425        <td>1998</td>
6426        <td><br/>Vol. 1384TACAS&nbsp;</td>
6427        <td>proceedings</td>
6428        <td>&nbsp;</td>
6429        <td>&nbsp;</td>
6430</tr>
6431<tr id="bib_DBLP:conf/tacas/1998" class="bibtex noshow">
6432<td colspan="7"><b>BibTeX</b>:
6433<pre>
6434@proceedings{DBLP:conf/tacas/1998,,
6435  title = {Tools and Algorithms for Construction and Analysis of Systems, 4th International Conference, TACAS '98, Held as Part of the European Joint Conferences on the Theory and Practice of Software, ETAPS'98, Lisbon, Portugal, March 28 - April 4, 1998, Proceedings},
6436  booktitle = {TACAS},
6437  publisher = {Springer},
6438  year = {1998},
6439  volume = {1384}
6440}
6441</pre></td>
6442</tr>
6443<tr id="DBLP:conf/forte/2005" class="entry">
6444        <td>&nbsp;Farn Wang (Ed.)</td>
6445        <td>Formal Techniques for Networked and Distributed Systems - FORTE 2005, 25th IFIP WG 6.1 International Conference, Taipei, Taiwan, October 2-5, 2005, Proceedings <p class="infolinks">[<a href="javascript:toggleInfo('DBLP:conf/forte/2005','bibtex')">BibTeX</a>]</p></td>
6446        <td>2005</td>
6447        <td><br/>Vol. 3731FORTE&nbsp;</td>
6448        <td>proceedings</td>
6449        <td>&nbsp;</td>
6450        <td>&nbsp;</td>
6451</tr>
6452<tr id="bib_DBLP:conf/forte/2005" class="bibtex noshow">
6453<td colspan="7"><b>BibTeX</b>:
6454<pre>
6455@proceedings{DBLP:conf/forte/2005,,
6456  title = {Formal Techniques for Networked and Distributed Systems - FORTE 2005, 25th IFIP WG 6.1 International Conference, Taipei, Taiwan, October 2-5, 2005, Proceedings},
6457  booktitle = {FORTE},
6458  publisher = {Springer},
6459  year = {2005},
6460  volume = {3731}
6461}
6462</pre></td>
6463</tr>
6464<tr id="DBLP:conf/fm/1999-1" class="entry">
6465        <td>&nbsp;Jeannette M. Wing and Jim Woodcock and Jim Davies (Ed.)</td>
6466        <td>FM'99 - Formal Methods, World Congress on Formal Methods in the Development of Computing Systems, Toulouse, France, September 20-24, 1999, Proceedings, Volume I <p class="infolinks">[<a href="javascript:toggleInfo('DBLP:conf/fm/1999-1','bibtex')">BibTeX</a>]</p></td>
6467        <td>1999</td>
6468        <td><br/>Vol. 1708World Congress on Formal Methods&nbsp;</td>
6469        <td>proceedings</td>
6470        <td>&nbsp;</td>
6471        <td>&nbsp;</td>
6472</tr>
6473<tr id="bib_DBLP:conf/fm/1999-1" class="bibtex noshow">
6474<td colspan="7"><b>BibTeX</b>:
6475<pre>
6476@proceedings{DBLP:conf/fm/1999-1,,
6477  title = {FM'99 - Formal Methods, World Congress on Formal Methods in the Development of Computing Systems, Toulouse, France, September 20-24, 1999, Proceedings, Volume I},
6478  booktitle = {World Congress on Formal Methods},
6479  publisher = {Springer},
6480  year = {1999},
6481  volume = {1708}
6482}
6483</pre></td>
6484</tr>
6485<tr id="alliance" class="entry">
6486        <td>&nbsp;</td>
6487        <td>Alliance, a free VLSI cad system <p class="infolinks">[<a href="javascript:toggleInfo('alliance','bibtex')">BibTeX</a>]</p></td>
6488        <td></td>
6489        <td>&nbsp;</td>
6490        <td>misc</td>
6491        <td>&nbsp;</td>
6492        <td>&nbsp;</td>
6493</tr>
6494<tr id="bib_alliance" class="bibtex noshow">
6495<td colspan="7"><b>BibTeX</b>:
6496<pre>
6497@misc{alliance,,
6498  title = {Alliance, a free VLSI cad system},
6499  note = {\http://www-asim.lip6.fr/recherche/alliance/}
6500}
6501</pre></td>
6502</tr>
6503<tr id="onespin" class="entry">
6504        <td>&nbsp;</td>
6505        <td>OneSpin Solutions <p class="infolinks">[<a href="javascript:toggleInfo('onespin','bibtex')">BibTeX</a>]</p></td>
6506        <td></td>
6507        <td>&nbsp;</td>
6508        <td>misc</td>
6509        <td>&nbsp;</td>
6510        <td>&nbsp;</td>
6511</tr>
6512<tr id="bib_onespin" class="bibtex noshow">
6513<td colspan="7"><b>BibTeX</b>:
6514<pre>
6515@misc{onespin,,
6516  title = {OneSpin Solutions},
6517  note = {http://www.onespin-solutions.com/}
6518}
6519</pre></td>
6520</tr>
6521<tr id="prosyd" class="entry">
6522        <td>&nbsp;</td>
6523        <td>The Prosyd Project on Property-Based System Design <p class="infolinks">[<a href="javascript:toggleInfo('prosyd','bibtex')">BibTeX</a>]</p></td>
6524        <td></td>
6525        <td>&nbsp;</td>
6526        <td>misc</td>
6527        <td>&nbsp;</td>
6528        <td>&nbsp;</td>
6529</tr>
6530<tr id="bib_prosyd" class="bibtex noshow">
6531<td colspan="7"><b>BibTeX</b>:
6532<pre>
6533@misc{prosyd,,
6534  title = {The Prosyd Project on Property-Based System Design},
6535  note = {http://www.prosyd.org/}
6536}
6537</pre></td>
6538</tr>
6539<tr id="soclib" class="entry">
6540        <td>&nbsp;</td>
6541        <td>The SoCLib Project <p class="infolinks">[<a href="javascript:toggleInfo('soclib','bibtex')">BibTeX</a>]</p></td>
6542        <td></td>
6543        <td>&nbsp;</td>
6544        <td>misc</td>
6545        <td><a href="http://soclib.lip6.fr/">URL</a>&nbsp;</td>
6546        <td>&nbsp;</td>
6547</tr>
6548<tr id="bib_soclib" class="bibtex noshow">
6549<td colspan="7"><b>BibTeX</b>:
6550<pre>
6551@misc{soclib,,
6552  title = {The SoCLib Project},
6553  note = {http://soclib.lip6.fr/},
6554  url = {http://soclib.lip6.fr/}
6555}
6556</pre></td>
6557</tr>
6558<tr id="texas97bench" class="entry">
6559        <td>&nbsp;</td>
6560        <td>Texas-97 Verification Benchmarks <p class="infolinks">[<a href="javascript:toggleInfo('texas97bench','bibtex')">BibTeX</a>]</p></td>
6561        <td></td>
6562        <td>&nbsp;</td>
6563        <td>misc</td>
6564        <td>&nbsp;</td>
6565        <td>&nbsp;</td>
6566</tr>
6567<tr id="bib_texas97bench" class="bibtex noshow">
6568<td colspan="7"><b>BibTeX</b>:
6569<pre>
6570@misc{texas97bench,,
6571  title = {Texas-97 Verification Benchmarks},
6572  note = {\http://www.cad.eecs.berkeley.edu/Respep/Research/vis/texas-97/}
6573}
6574</pre></td>
6575</tr>
6576<tr id="vsia" class="entry">
6577        <td>&nbsp;</td>
6578        <td>VSI Alliance <p class="infolinks">[<a href="javascript:toggleInfo('vsia','bibtex')">BibTeX</a>]</p></td>
6579        <td></td>
6580        <td>&nbsp;</td>
6581        <td>misc</td>
6582        <td>&nbsp;</td>
6583        <td>&nbsp;</td>
6584</tr>
6585<tr id="bib_vsia" class="bibtex noshow">
6586<td colspan="7"><b>BibTeX</b>:
6587<pre>
6588@misc{vsia,,
6589  title = {VSI Alliance},
6590  note = {http://www.vsi.org/}
6591}
6592</pre></td>
6593</tr>
6594<tr id="DBLP:conf/date/2009" class="entry">
6595        <td>&nbsp;</td>
6596        <td>Design, Automation and Test in Europe, DATE 2009, Nice, France, April 20-24, 2009 <p class="infolinks">[<a href="javascript:toggleInfo('DBLP:conf/date/2009','bibtex')">BibTeX</a>]</p></td>
6597        <td>2009</td>
6598        <td>DATE&nbsp;</td>
6599        <td>proceedings</td>
6600        <td>&nbsp;</td>
6601        <td>&nbsp;</td>
6602</tr>
6603<tr id="bib_DBLP:conf/date/2009" class="bibtex noshow">
6604<td colspan="7"><b>BibTeX</b>:
6605<pre>
6606@proceedings{DBLP:conf/date/2009,,
6607  title = {Design, Automation and Test in Europe, DATE 2009, Nice, France, April 20-24, 2009},
6608  booktitle = {DATE},
6609  publisher = {IEEE},
6610  year = {2009}
6611}
6612</pre></td>
6613</tr>
6614<tr id="DBLP:conf/fmcad/2009" class="entry">
6615        <td>&nbsp;</td>
6616        <td>Proceedings of 9th International Conference on Formal Methods in Computer-Aided Design, FMCAD 2009, 15-18 November 2009, Austin, Texas, USA <p class="infolinks">[<a href="javascript:toggleInfo('DBLP:conf/fmcad/2009','bibtex')">BibTeX</a>]</p></td>
6617        <td>2009</td>
6618        <td>FMCAD&nbsp;</td>
6619        <td>proceedings</td>
6620        <td>&nbsp;</td>
6621        <td>&nbsp;</td>
6622</tr>
6623<tr id="bib_DBLP:conf/fmcad/2009" class="bibtex noshow">
6624<td colspan="7"><b>BibTeX</b>:
6625<pre>
6626@proceedings{DBLP:conf/fmcad/2009,,
6627  title = {Proceedings of 9th International Conference on Formal Methods in Computer-Aided Design, FMCAD 2009, 15-18 November 2009, Austin, Texas, USA},
6628  booktitle = {FMCAD},
6629  publisher = {IEEE},
6630  year = {2009}
6631}
6632</pre></td>
6633</tr>
6634<tr id="DBLP:conf/lics/2004" class="entry">
6635        <td>&nbsp;</td>
6636        <td>19th IEEE Symposium on Logic in Computer Science (LICS 2004), 14-17 July 2004, Turku, Finland, Proceedings <p class="infolinks">[<a href="javascript:toggleInfo('DBLP:conf/lics/2004','bibtex')">BibTeX</a>]</p></td>
6637        <td>2004</td>
6638        <td>LICS&nbsp;</td>
6639        <td>proceedings</td>
6640        <td>&nbsp;</td>
6641        <td>&nbsp;</td>
6642</tr>
6643<tr id="bib_DBLP:conf/lics/2004" class="bibtex noshow">
6644<td colspan="7"><b>BibTeX</b>:
6645<pre>
6646@proceedings{DBLP:conf/lics/2004,,
6647  title = {19th IEEE Symposium on Logic in Computer Science (LICS 2004), 14-17 July 2004, Turku, Finland, Proceedings},
6648  booktitle = {LICS},
6649  publisher = {IEEE Computer Society},
6650  year = {2004}
6651}
6652</pre></td>
6653</tr>
6654<tr id="DBLP:conf/sat/2004" class="entry">
6655        <td>&nbsp;</td>
6656        <td>SAT 2004 - The Seventh International Conference on Theory and Applications of Satisfiability Testing, 10-13 May 2004, Vancouver, BC, Canada, Online Proceedings <p class="infolinks">[<a href="javascript:toggleInfo('DBLP:conf/sat/2004','bibtex')">BibTeX</a>]</p></td>
6657        <td>2004</td>
6658        <td>SAT&nbsp;</td>
6659        <td>proceedings</td>
6660        <td>&nbsp;</td>
6661        <td>&nbsp;</td>
6662</tr>
6663<tr id="bib_DBLP:conf/sat/2004" class="bibtex noshow">
6664<td colspan="7"><b>BibTeX</b>:
6665<pre>
6666@proceedings{DBLP:conf/sat/2004,,
6667  title = {SAT 2004 - The Seventh International Conference on Theory and Applications of Satisfiability Testing, 10-13 May 2004, Vancouver, BC, Canada, Online Proceedings},
6668  booktitle = {SAT},
6669  year = {2004}
6670}
6671</pre></td>
6672</tr>
6673<tr id="DBLP:conf/date/2003" class="entry">
6674        <td>&nbsp;</td>
6675        <td>2003 Design, Automation and Test in Europe Conference and Exposition (DATE 2003), 3-7 March 2003, Munich, Germany <p class="infolinks">[<a href="javascript:toggleInfo('DBLP:conf/date/2003','bibtex')">BibTeX</a>]</p></td>
6676        <td>2003</td>
6677        <td>DATE&nbsp;</td>
6678        <td>proceedings</td>
6679        <td>&nbsp;</td>
6680        <td>&nbsp;</td>
6681</tr>
6682<tr id="bib_DBLP:conf/date/2003" class="bibtex noshow">
6683<td colspan="7"><b>BibTeX</b>:
6684<pre>
6685@proceedings{DBLP:conf/date/2003,,
6686  title = {2003 Design, Automation and Test in Europe Conference and Exposition (DATE 2003), 3-7 March 2003, Munich, Germany},
6687  booktitle = {DATE},
6688  publisher = {IEEE Computer Society},
6689  year = {2003}
6690}
6691</pre></td>
6692</tr>
6693<tr id="DBLP:conf/icse/2003" class="entry">
6694        <td>&nbsp;</td>
6695        <td>Proceedings of the 25th International Conference on Software Engineering, May 3-10, 2003, Portland, Oregon, USA <p class="infolinks">[<a href="javascript:toggleInfo('DBLP:conf/icse/2003','bibtex')">BibTeX</a>]</p></td>
6696        <td>2003</td>
6697        <td>ICSE&nbsp;</td>
6698        <td>proceedings</td>
6699        <td>&nbsp;</td>
6700        <td>&nbsp;</td>
6701</tr>
6702<tr id="bib_DBLP:conf/icse/2003" class="bibtex noshow">
6703<td colspan="7"><b>BibTeX</b>:
6704<pre>
6705@proceedings{DBLP:conf/icse/2003,,
6706  title = {Proceedings of the 25th International Conference on Software Engineering, May 3-10, 2003, Portland, Oregon, USA},
6707  booktitle = {ICSE},
6708  publisher = {IEEE Computer Society},
6709  year = {2003}
6710}
6711</pre></td>
6712</tr>
6713<tr id="DBLP:conf/time/2003" class="entry">
6714        <td>&nbsp;</td>
6715        <td>10th International Symposium on Temporal Representation and Reasoning / 4th International Conference on Temporal Logic (TIME-ICTL 2003), 8-10 July 2003, Cairns, Queensland, Australia <p class="infolinks">[<a href="javascript:toggleInfo('DBLP:conf/time/2003','bibtex')">BibTeX</a>]</p></td>
6716        <td>2003</td>
6717        <td>TIME&nbsp;</td>
6718        <td>proceedings</td>
6719        <td>&nbsp;</td>
6720        <td>&nbsp;</td>
6721</tr>
6722<tr id="bib_DBLP:conf/time/2003" class="bibtex noshow">
6723<td colspan="7"><b>BibTeX</b>:
6724<pre>
6725@proceedings{DBLP:conf/time/2003,,
6726  title = {10th International Symposium on Temporal Representation and Reasoning / 4th International Conference on Temporal Logic (TIME-ICTL 2003), 8-10 July 2003, Cairns, Queensland, Australia},
6727  booktitle = {TIME},
6728  publisher = {IEEE Computer Society},
6729  year = {2003}
6730}
6731</pre></td>
6732</tr>
6733<tr id="DBLP:conf/iccd/2002" class="entry">
6734        <td>&nbsp;</td>
6735        <td>20th International Conference on Computer Design (ICCD 2002), VLSI in Computers and Processors, 16-18 September 2002, Freiburg, Germany, Proceedings <p class="infolinks">[<a href="javascript:toggleInfo('DBLP:conf/iccd/2002','bibtex')">BibTeX</a>]</p></td>
6736        <td>2002</td>
6737        <td>ICCD&nbsp;</td>
6738        <td>proceedings</td>
6739        <td>&nbsp;</td>
6740        <td>&nbsp;</td>
6741</tr>
6742<tr id="bib_DBLP:conf/iccd/2002" class="bibtex noshow">
6743<td colspan="7"><b>BibTeX</b>:
6744<pre>
6745@proceedings{DBLP:conf/iccd/2002,,
6746  title = {20th International Conference on Computer Design (ICCD 2002), VLSI in Computers and Processors, 16-18 September 2002, Freiburg, Germany, Proceedings},
6747  booktitle = {ICCD},
6748  publisher = {IEEE Computer Society},
6749  year = {2002}
6750}
6751</pre></td>
6752</tr>
6753<tr id="DBLP:conf/dac/2001" class="entry">
6754        <td>&nbsp;</td>
6755        <td>Proceedings of the 38th Design Automation Conference, DAC 2001, Las Vegas, NV, USA, June 18-22, 2001 <p class="infolinks">[<a href="javascript:toggleInfo('DBLP:conf/dac/2001','bibtex')">BibTeX</a>]</p></td>
6756        <td>2001</td>
6757        <td>DAC&nbsp;</td>
6758        <td>proceedings</td>
6759        <td>&nbsp;</td>
6760        <td>&nbsp;</td>
6761</tr>
6762<tr id="bib_DBLP:conf/dac/2001" class="bibtex noshow">
6763<td colspan="7"><b>BibTeX</b>:
6764<pre>
6765@proceedings{DBLP:conf/dac/2001,,
6766  title = {Proceedings of the 38th Design Automation Conference, DAC 2001, Las Vegas, NV, USA, June 18-22, 2001},
6767  booktitle = {DAC},
6768  publisher = {ACM},
6769  year = {2001}
6770}
6771</pre></td>
6772</tr>
6773<tr id="DBLP:conf/icse/2001" class="entry">
6774        <td>&nbsp;</td>
6775        <td>Proceedings of the 23rd International Conference on Software Engineering, ICSE 2001, 12-19 May 2001, Toronto, Ontario, Canada <p class="infolinks">[<a href="javascript:toggleInfo('DBLP:conf/icse/2001','bibtex')">BibTeX</a>]</p></td>
6776        <td>2001</td>
6777        <td>ICSE&nbsp;</td>
6778        <td>proceedings</td>
6779        <td>&nbsp;</td>
6780        <td>&nbsp;</td>
6781</tr>
6782<tr id="bib_DBLP:conf/icse/2001" class="bibtex noshow">
6783<td colspan="7"><b>BibTeX</b>:
6784<pre>
6785@proceedings{DBLP:conf/icse/2001,,
6786  title = {Proceedings of the 23rd International Conference on Software Engineering, ICSE 2001, 12-19 May 2001, Toronto, Ontario, Canada},
6787  booktitle = {ICSE},
6788  publisher = {IEEE Computer Society},
6789  year = {2001}
6790}
6791</pre></td>
6792</tr>
6793<tr id="amba" class="entry">
6794        <td>&nbsp;</td>
6795        <td>AMBA Specification <p class="infolinks">[<a href="javascript:toggleInfo('amba','bibtex')">BibTeX</a>]</p></td>
6796        <td>1999</td>
6797        <td>&nbsp;</td>
6798        <td>manual</td>
6799        <td>&nbsp;</td>
6800        <td><div class="bibtex_pdf">
6801            <a href="docs/IHI0011A_AMBA_SPEC.pdf">PDF</a>
6802          </div>&nbsp;</td>
6803</tr>
6804<tr id="bib_amba" class="bibtex noshow">
6805<td colspan="7"><b>BibTeX</b>:
6806<pre>
6807@manual{amba,,
6808  title = {AMBA Specification},
6809  year = {1999},
6810  edition = {2.0},
6811  note = {ARM Limited pyright. All right reserved}
6812}
6813</pre></td>
6814</tr>
6815<tr id="formalcheck" class="entry">
6816        <td>&nbsp;</td>
6817        <td>Formal Verification Using Affirma FormalCheck <p class="infolinks">[<a href="javascript:toggleInfo('formalcheck','bibtex')">BibTeX</a>]</p></td>
6818        <td>1999</td>
6819        <td>&nbsp;</td>
6820        <td>manual</td>
6821        <td>&nbsp;</td>
6822        <td>&nbsp;</td>
6823</tr>
6824<tr id="bib_formalcheck" class="bibtex noshow">
6825<td colspan="7"><b>BibTeX</b>:
6826<pre>
6827@manual{formalcheck,,
6828  title = {Formal Verification Using Affirma FormalCheck},
6829  year = {1999}
6830}
6831</pre></td>
6832</tr>
6833<tr id="DBLP:conf/lics/LICS4" class="entry">
6834        <td>&nbsp;</td>
6835        <td>Proceedings, Fourth Annual Symposium on Logic in Computer Science, 5-8 June, 1989, Asilomar Conference Center, Pacific Grove, California, USA <p class="infolinks">[<a href="javascript:toggleInfo('DBLP:conf/lics/LICS4','bibtex')">BibTeX</a>]</p></td>
6836        <td>1989</td>
6837        <td>LICS&nbsp;</td>
6838        <td>proceedings</td>
6839        <td>&nbsp;</td>
6840        <td>&nbsp;</td>
6841</tr>
6842<tr id="bib_DBLP:conf/lics/LICS4" class="bibtex noshow">
6843<td colspan="7"><b>BibTeX</b>:
6844<pre>
6845@proceedings{DBLP:conf/lics/LICS4,,
6846  title = {Proceedings, Fourth Annual Symposium on Logic in Computer Science, 5-8 June, 1989, Asilomar Conference Center, Pacific Grove, California, USA},
6847  booktitle = {LICS},
6848  publisher = {IEEE Computer Society},
6849  year = {1989}
6850}
6851</pre></td>
6852</tr>
6853<tr id="DBLP:conf/lics/LICS3" class="entry">
6854        <td>&nbsp;</td>
6855        <td>Proceedings, Third Annual Symposium on Logic in Computer Science <p class="infolinks">[<a href="javascript:toggleInfo('DBLP:conf/lics/LICS3','bibtex')">BibTeX</a>]</p></td>
6856        <td>1988</td>
6857        <td>LICS&nbsp;</td>
6858        <td>proceedings</td>
6859        <td>&nbsp;</td>
6860        <td>&nbsp;</td>
6861</tr>
6862<tr id="bib_DBLP:conf/lics/LICS3" class="bibtex noshow">
6863<td colspan="7"><b>BibTeX</b>:
6864<pre>
6865@proceedings{DBLP:conf/lics/LICS3,,
6866  title = {Proceedings, Third Annual Symposium on Logic in Computer Science},
6867  booktitle = {LICS},
6868  publisher = {IEEE Computer Society},
6869  year = {1988}
6870}
6871</pre></td>
6872</tr>
6873<tr id="DBLP:conf/stoc/STOC14" class="entry">
6874        <td>&nbsp;</td>
6875        <td>Proceedings of the Fourteenth Annual ACM Symposium on Theory of Computing, 5-7 May 1982, San Francisco, California, USA <p class="infolinks">[<a href="javascript:toggleInfo('DBLP:conf/stoc/STOC14','bibtex')">BibTeX</a>]</p></td>
6876        <td>1982</td>
6877        <td>STOC&nbsp;</td>
6878        <td>proceedings</td>
6879        <td>&nbsp;</td>
6880        <td>&nbsp;</td>
6881</tr>
6882<tr id="bib_DBLP:conf/stoc/STOC14" class="bibtex noshow">
6883<td colspan="7"><b>BibTeX</b>:
6884<pre>
6885@proceedings{DBLP:conf/stoc/STOC14,,
6886  title = {Proceedings of the Fourteenth Annual ACM Symposium on Theory of Computing, 5-7 May 1982, San Francisco, California, USA},
6887  booktitle = {STOC},
6888  publisher = {ACM},
6889  year = {1982}
6890}
6891</pre></td>
6892</tr>
6893</tbody>
6894</table>
6895
6896<p>
6897 <small>Created by <a href="http://jabref.sourceforge.net">JabRef</a> on 20/02/2012.</small>
6898</p>
6899
6900</body>
6901</html>
6902
6903<!-- File generated by JabRef ; Export Filter written by Mark Schenk -->
Note: See TracBrowser for help on using the repository browser.