This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/usr/local/bin/symon -pnf | |
############################################################### | |
# Name | |
# periodic_fetch.symon | |
# | |
# Description | |
# SyMon specification to make sure that for any application ID, | |
# the time gap between two consecutive fetch must be bounded by | |
# a certain time_bound. By running SyMon, one can see the | |
# maximum time_bound so far. If you only want to get the final result, |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/usr/local/bin/symon -dnf | |
############################################################### | |
# Name | |
# need_resp.symon | |
# | |
# Description | |
# After an event A with a specific ID, we should receive a response B with the same ID within 5 time units. | |
# | |
# For instance, for the following input, symon detects an error for x0 == hoge3 and x0 == hoge0. | |
# A hoge1 3 |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# Maintainer: Alex Szczuczko <[email protected]> | |
# Contributor: Marcelo Alaniz <[email protected]> | |
# Contributor: Peter Wu <[email protected]> | |
# Contributor: Masaki Waga <[email protected]> | |
pkgname=nusmv | |
_pkgname=NuSMV | |
pkgver=2.7.0 | |
pkgrel=2 | |
pkgdesc="A new symbolic model checker" |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#################################################################################### | |
# Name | |
# detect_non_dblp_bibtex.py | |
# Description | |
# This script reads a BibTeX file and detectes possibly non-DBLP entries. | |
# More precisely, it checks each entry for the presence of a 'biburl' field. | |
# If the 'biburl' field is missing or does not contain 'dblp', it considers the entry | |
# as possibly non-DBLP and prints the citation key of that entry. | |
# Usage | |
# python detect_non_dblp_bibtex.py /path/to/bibtex.bib |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
(defun pin-window () | |
(interactive) | |
(let ((window (selected-window))) | |
(progn | |
(message "Pin the window %s" window) | |
(set-window-dedicated-p window t)))) | |
(defun unpin-window () | |
(interactive) | |
(let ((window (selected-window))) |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# Maintainer: Masaki Waga | |
pkgname=tree-sitter-symon-git | |
pkgver=.r0.g5c8d3dd | |
pkgrel=1 | |
pkgdesc="SyMon grammar for tree-sitter" | |
arch=('i686' 'x86_64') | |
url="https://github.com/MasWag/tree-sitter-symon" | |
license=('MIT') | |
groups=('tree-sitter-grammars') |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# Stage 0: Builder | |
FROM debian:bookworm AS builder | |
# 1) Base tools & Spot repo key | |
RUN apt-get update && \ | |
apt-get install -y --no-install-recommends \ | |
ca-certificates wget gnupg lsb-release | |
# 2) Add Spot’s Debian repo (stable) | |
RUN wget -qO- https://www.lrde.epita.fr/repo/debian.gpg | apt-key add - && \ |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
(leaf satysfi | |
:mode (("\\.saty$" . satysfi-mode) | |
("\\.satyh$" . satysfi-mode) | |
("\\.satyg$" . satysfi-mode)) | |
:hook (satysfi-mode-hook . lsp) | |
:config | |
(cond ((equal system-type 'darwin) | |
(setq satysfi-pdf-viewer-command "open -a Skim" | |
satysfi-command "opam exec satysfi")) | |
((equal system-type 'gnu/linux) |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
use std::rc::Rc; | |
use std::cell::{Ref, RefCell}; | |
struct AppendOnlySequence<T> { | |
data: Rc<RefCell<Vec<T>>>, | |
} | |
impl<T> AppendOnlySequence<T> { | |
pub fn new() -> Self { | |
Self { |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# Maintainer: Stefan Husmann <[email protected]> | |
# Maintainer: Clément Démoulins <[email protected]> | |
# Contributor: Aaron Schaefer <[email protected]> | |
# Contributor: Masaki Waga <[email protected]> | |
pkgname=spot | |
pkgver=2.12 | |
pkgrel=1 | |
pkgdesc="A C++17 library for LTL, omega automata manipulation and model checking." | |
arch=('i686' 'x86_64') |
NewerOlder