mirror of
https://gitlab.com/scemama/irpf90.git
synced 2024-11-09 07:33:43 +01:00
Added Instability factor in man
This commit is contained in:
parent
867f8b41ed
commit
0ca05d60d2
@ -93,6 +93,11 @@ def do_print(var):
|
|||||||
var.needed_by.sort()
|
var.needed_by.sort()
|
||||||
print >>file, ".SH Needed by"
|
print >>file, ".SH Needed by"
|
||||||
process_deps(file,var.needed_by)
|
process_deps(file,var.needed_by)
|
||||||
|
print >>file, ".SH Instability factor"
|
||||||
|
fo = len(var.children)
|
||||||
|
fi = len(var.parents)
|
||||||
|
print >>file, 100.* (fi / (fi+fo+.000001) ), "%"
|
||||||
|
print >>file, ".br"
|
||||||
file.close()
|
file.close()
|
||||||
|
|
||||||
######################################################################
|
######################################################################
|
||||||
@ -133,6 +138,11 @@ def do_print_subroutines(sub):
|
|||||||
sub.touches.sort()
|
sub.touches.sort()
|
||||||
print >>file, ".SH Touches"
|
print >>file, ".SH Touches"
|
||||||
process_deps(file,sub.touches)
|
process_deps(file,sub.touches)
|
||||||
|
print >>file, ".SH Instability factor"
|
||||||
|
fo = len(sub.needs)+len(sub.calls)+len(sub.touches)
|
||||||
|
fi = len(sub.called_by)
|
||||||
|
print >>file, 100.* (fi / (fi+fo+.000001) ), "%"
|
||||||
|
print >>file, ".br"
|
||||||
file.close()
|
file.close()
|
||||||
|
|
||||||
######################################################################
|
######################################################################
|
||||||
|
Loading…
Reference in New Issue
Block a user