Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 1 of 1 for unsatDepth (0.27 sec)

  1. src/cmd/compile/internal/ssa/prove.go

    // before the previous checkpoint.
    // Called when backing up on a branch.
    func (ft *factsTable) restore() {
    	if ft.unsatDepth > 0 {
    		ft.unsatDepth--
    	} else {
    		ft.unsat = false
    	}
    	for {
    		old := ft.stack[len(ft.stack)-1]
    		ft.stack = ft.stack[:len(ft.stack)-1]
    		if old == checkpointFact {
    			break
    		}
    		if old.r == lt|eq|gt {
    			delete(ft.facts, old.p)
    		} else {
    			ft.facts[old.p] = old.r
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Mar 04 17:30:21 UTC 2024
    - 48.9K bytes
    - Viewed (0)
Back to top