Skip to content

Instantly share code, notes, and snippets.

@5nizza
5nizza / tlsf_strix_synt
Created October 21, 2024 12:00
Convert TLSF into LTL and feed to Strix
#/bin/bash
set -e
if [ "$#" -ne 1 ]; then
echo "Specify input TLSF file"
exit 1
fi
tlsf_file=$1
@5nizza
5nizza / gist:8c3988a75e6c579c8ace676a9cdb11d9
Last active October 21, 2024 11:49
viewhoa: bash function to view HOA files (requires hoa2dot.sh)
viewhoa ()
{
tmp_file=`mktemp -t "$(basename $0).XXXXXXXXXX.dot"`;
echo $tmp_file;
LIB_PATH=/home/art/software/sdf-hoa-master/third_parties/spot-install-prefix/lib;
BIN_PATH=/home/art/software/sdf-hoa-master/third_parties/spot-install-prefix/bin;
LD_LIBRARY_PATH=$LD_LIBRARY_PATH:$LIB_PATH \
$BIN_PATH/autfilt $1 -d > $tmp_file;
@5nizza
5nizza / thinkfan.md
Last active January 31, 2024 22:45
Thinkpad x1 yoga gen 7: thinkfan configuration

Set up thinkfan on Thinkpad x1 yoga gen 7

All the steps for setting up thinkfan on thinkpad x1 yoga gen 7:

  • install sensors (likely)

  • install thinkfan

  • create config file for driver (or whatever it is):

@5nizza
5nizza / run_sdf.sh
Created June 2, 2021 11:57
Run two processes, wait for the fastest one and kill another. (Used for SYNTCOMP'21.)
#!/bin/bash
# Run two processes of tlsf-sdf in parallel:
# - one for the original spec,
# - one for the dualized spec.
# All agruments are relayed to tlsf-sdf-opt.
set -m # enable 'job control'
@5nizza
5nizza / mc.sh
Last active April 28, 2024 13:52
TLSF model checker using IIMC
#!/usr/bin/bash
# This script model checks a given AIGER file wrt. TLSF specification:
# @return: 0 on success, non-zero on failure
# Convert TLSF to AIGER monitor:
# syfco --format smv -m fully example.tlsf | smvtoaig > monitor.aag
# Combine monitor with implementation:
# combine-aiger monitor.aag implementation.aag > combined.aag
@5nizza
5nizza / tlsf.vim
Last active September 21, 2018 16:58
Syntax file for TLSF SYNTCOMP format
" Vim syntax file
" Language: TLSF
" Maintainer: Ayrat Khalimov <[email protected]>
" Last change: Sep 20, 2018
"
" put this into to your ~/.config/nvim/init.vim
"
" augroup syntax
" au BufRead,BufNewFile,BufNewFile *.tlsf setfiletype tlsf
" augroup END
@5nizza
5nizza / sort_by_last_modified_content.py
Last active March 24, 2018 16:49
Sort directories by last modified date of its files
#!/usr/bin/env python3
import argparse
import os
from os.path import join
from datetime import datetime
# https://stackoverflow.com/a/287944/801203
class Colors:
@5nizza
5nizza / lts_to_spot.py
Created March 26, 2017 18:34
Conversion from PARTY LTS into the SPOT automaton
from itertools import chain
from typing import Union
import spot
import buddy
from interfaces.automata import Label
from interfaces.lts import LTS
from synthesis.funcs_args_types_names import ARG_MODEL_STATE
@5nizza
5nizza / gen_edges_fun_smt.py
Created March 22, 2017 17:25
Generate SMT define-fun from graph edges list
# the main function
def get_edges_as_smt(function_name:str, a1:str, a2:str, node_type:str, graph):
or_components = []
for s, d_list in graph.items():
for d in d_list:
or_components.append('(and (= {a1} {s}) (= {a2} {d}))'.format(a1=a1,a2=a2,s=node_type+str(s),d=node_type+str(d)))
or_smt = '(or %s)' % (' '.join(or_components))
return '(define-fun {function_name} (({a1} {node_type}) ({a2} {node_type})) Bool {body})'.format(
a1=a1, a2=a2, node_type=node_type, function_name=function_name, body=or_smt)
import spot
import buddy
from typing import Set
from helpers.str_utils import remove_from_str
from interfaces.automata import Label, LABEL_TRUE
from interfaces.expr import Signal
def parse_bdd(bdd:buddy.bdd, d:spot.bdd_dict) -> Set[Label]: