Skip to content

Commit

Permalink
fix bug
Browse files Browse the repository at this point in the history
  • Loading branch information
abdelrahmanhosny committed Apr 29, 2020
1 parent 2fdd0c3 commit 91e47a8
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
4 changes: 2 additions & 2 deletions edaac/metrics/parsers/innovus_log.py
Original file line number Diff line number Diff line change
Expand Up @@ -22,11 +22,11 @@


def _time_string_to_seconds(time):
hour, minute, second = list(map(int, time.split(':')))
hour, minute, second = list(map(float, time.split(':')))
return second + minute*60 + hour*60*60

def _time_string_to_minutes(time):
hour, minute, second = list(map(int, time.split(':')))
hour, minute, second = list(map(float, time.split(':')))
return second/60.0 + minute + hour*60

def parse_innovus_log(log_file_path):
Expand Down
2 changes: 1 addition & 1 deletion edaac/version.py
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@
OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
'''

__version__ = '0.0.14'
__version__ = '0.0.15'

def version():
print("EDA Analytics Central (EDAAC) v" + __version__)

0 comments on commit 91e47a8

Please sign in to comment.