Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 1 of 1 for lessByID (0.08 sec)

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

    			panic("unknown relation")
    		}
    		if !ok {
    			if parent.Func.pass.debug > 2 {
    				parent.Func.Warnl(parent.Pos, "unsat %s %s %s", v, w, r)
    			}
    			ft.unsat = true
    			return
    		}
    	} else {
    		if lessByID(w, v) {
    			v, w = w, v
    			r = reverseBits[r]
    		}
    
    		p := pair{v, w, d}
    		oldR, ok := ft.facts[p]
    		if !ok {
    			if v == w {
    				oldR = eq
    			} else {
    				oldR = lt | eq | gt
    			}
    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