We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
To use LTSmin, I needed a few extra steps:
(1) rather standard: wget https://github.com/utwente-fmt/ltsmin/releases/download/v3.0.2/ltsmin-v3.0.2-linux.tgz tar xzvf ltsmin-v3.0.2-linux.tgz mv v3.0.2 ltsmin-v3.0.2
(2) For dve and promela, we need to add divine and spins to the path:
(replace ... with the actual path where you unpacked/moved ltsmin-v3.0.2) add to .bash_profile: PATH=".../ltsmin-v3.0.2/bin:$PATH"
(3) For dve, we additionally need ncurses5:
sudo apt-get install libncurses5
The text was updated successfully, but these errors were encountered:
ad (3) above:
A better solution would be to link ncurses statically into divine, if possible.
The error message I bumped into was:
> dve2lts-sym elevator.3.dve dve2lts-sym: opening elevator.3.dve divine: error while loading shared libraries: libncurses.so.5: cannot open shared object file: No such file or directory dve2lts-sym, ** error **: File not found: /tmp/ltsmin-Ktl5tI/elevator.3.dve2C
Sorry, something went wrong.
No branches or pull requests
To use LTSmin, I needed a few extra steps:
(1) rather standard:
wget https://github.com/utwente-fmt/ltsmin/releases/download/v3.0.2/ltsmin-v3.0.2-linux.tgz
tar xzvf ltsmin-v3.0.2-linux.tgz
mv v3.0.2 ltsmin-v3.0.2
(2)
For dve and promela, we need to add divine and spins to the path:
(replace ... with the actual path where you unpacked/moved ltsmin-v3.0.2)
add to .bash_profile: PATH=".../ltsmin-v3.0.2/bin:$PATH"
(3)
For dve, we additionally need ncurses5:
sudo apt-get install libncurses5
The text was updated successfully, but these errors were encountered: