-
-
Notifications
You must be signed in to change notification settings - Fork 2
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Extended the Hash.delete() method to detele more than one key a time.
new file: scripts/topological_sort.sf
- Loading branch information
trizen
committed
Sep 9, 2015
1 parent
cb48960
commit 8a17915
Showing
3 changed files
with
51 additions
and
5 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,48 @@ | ||
#!/usr/bin/ruby | ||
|
||
# | ||
## http://rosettacode.org/wiki/Topological_sort | ||
# | ||
|
||
func print_topo_sort (deps) { | ||
var ba = Hash.new; | ||
deps.each { |before, afters| | ||
afters.each { |after| | ||
if (before != after) { | ||
ba[before][after] = 1; | ||
}; | ||
ba[after] \\= Hash.new; | ||
} | ||
}; | ||
|
||
loop { | ||
var afters = ba.keys.grep { ba[_].values.len == 0 }.sort; | ||
afters.len || break; | ||
say afters.join(" "); | ||
ba.delete(afters...); | ||
ba.values.each { |v| v.delete(afters...) }; | ||
}; | ||
|
||
say (ba.len ? "Cicle found! #{ba.keys.sort}" : "---"); | ||
} | ||
|
||
var deps = Hash.new( | ||
des_system_lib => < std synopsys std_cell_lib des_system_lib dw02 | ||
dw01 ramlib ieee >, | ||
dw01 => < ieee dw01 dware gtech >, | ||
dw02 => < ieee dw02 dware >, | ||
dw03 => < std synopsys dware dw03 dw02 dw01 ieee gtech >, | ||
dw04 => < dw04 ieee dw01 dware gtech >, | ||
dw05 => < dw05 ieee dware >, | ||
dw06 => < dw06 ieee dware >, | ||
dw07 => < ieee dware >, | ||
dware => < ieee dware >, | ||
gtech => < ieee gtech >, | ||
ramlib => < std ieee >, | ||
std_cell_lib => < ieee std_cell_lib >, | ||
synopsys => < > | ||
); | ||
|
||
print_topo_sort(deps); | ||
deps[:dw01].append('dw04'); # Add unresolvable dependency | ||
print_topo_sort(deps); |