Skip to content

Commit

Permalink
Refactor
Browse files Browse the repository at this point in the history
  • Loading branch information
aman-goel committed Aug 30, 2024
1 parent 6513928 commit a8fe19a
Show file tree
Hide file tree
Showing 4 changed files with 7 additions and 10 deletions.
1 change: 1 addition & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -25,6 +25,7 @@ xtras/*/
.settings/*
.d/*
gmon.out
.*DS_Store

# But not these files
!.gitignore
Expand Down
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@

# AVR -- **A**bstractly **V**erifying **R**eachability

<p align="center">(also known as Averroes v2.0)
<p align="center">(also known as Averroes v2)
</p>


Expand Down
8 changes: 2 additions & 6 deletions avr.py
Original file line number Diff line number Diff line change
Expand Up @@ -9,17 +9,13 @@
# Author: Aman Goel (amangoel@umich.edu), University of Michigan
######################################################################################

import os, sys
import os
import subprocess
import argparse
import tempfile
import shutil
import ntpath
from distutils import spawn
import re
from distutils.spawn import find_executable

version=2.1
version=2.2

DEFAULT_TOP="-"
DEFAULT_BIN="build/bin"
Expand Down
6 changes: 3 additions & 3 deletions avr_pr.py
Original file line number Diff line number Diff line change
Expand Up @@ -8,11 +8,11 @@
######################################################################################


import os, sys, datetime, time, resource, argparse, shutil, signal
from subprocess import Popen, PIPE, DEVNULL, STDOUT
import os, sys, time, argparse, shutil, signal
from subprocess import Popen, PIPE
from enum import Enum

version=2.1
version=2.2
start_time = time.time()

cmdSuffix = ""
Expand Down

0 comments on commit a8fe19a

Please sign in to comment.