Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 1 of 1 for posetEdge (0.11 sec)

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

    }
    func (e posetEdge) Target() uint32 { return uint32(e) >> 1 }
    func (e posetEdge) Strict() bool   { return uint32(e)&1 != 0 }
    func (e posetEdge) String() string {
    	s := fmt.Sprint(e.Target())
    	if e.Strict() {
    		s += "*"
    	}
    	return s
    }
    
    // posetNode is a node of a DAG within the poset.
    type posetNode struct {
    	l, r posetEdge
    }
    
    // poset is a union-find data structure that can represent a partially ordered set
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Sep 04 17:23:05 UTC 2023
    - 37.2K bytes
    - Viewed (0)
Back to top