add presentation
This commit is contained in:
parent
ddf445c5b3
commit
a8ab9c1070
@ -375,12 +375,8 @@ export class Board {
|
||||
wire.markConnections();
|
||||
}
|
||||
|
||||
const inputs = this.components.filter(
|
||||
(comp) => comp.kind.label === "input",
|
||||
);
|
||||
const outputs = this.components.filter(
|
||||
(comp) => comp.kind.label === "output",
|
||||
);
|
||||
const inputs = this.inputsOrdered();
|
||||
const outputs = this.outputsOrdered();
|
||||
|
||||
const inputIdcs = new Map<Component, number>();
|
||||
for (const [i, input] of inputs.entries()) {
|
||||
|
||||
@ -237,7 +237,7 @@ export class ComponentOptimizer {
|
||||
this.eliminateRedundantState();
|
||||
this.hoistInputs();
|
||||
this.moveSetStateToSource();
|
||||
this.collapseStates();
|
||||
// this.collapseStates();
|
||||
this.eliminateUnusedStates();
|
||||
this.eliminateRedundantSetState();
|
||||
if (removeUnusedStates) {
|
||||
|
||||
BIN
docs/event_state_chart.png
Normal file
BIN
docs/event_state_chart.png
Normal file
Binary file not shown.
|
After Width: | Height: | Size: 112 KiB |
BIN
docs/mouse_state_chart.png
Normal file
BIN
docs/mouse_state_chart.png
Normal file
Binary file not shown.
|
After Width: | Height: | Size: 75 KiB |
BIN
docs/presentation.odp
Normal file
BIN
docs/presentation.odp
Normal file
Binary file not shown.
BIN
docs/presentation.pdf
Normal file
BIN
docs/presentation.pdf
Normal file
Binary file not shown.
Loading…
x
Reference in New Issue
Block a user