Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 1 of 1 for TestLCAFwdBack (0.15 sec)

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

    			if l1 != l2 {
    				t.Errorf("lca(%s,%s)=%s, want %s", b, c, l1, l2)
    			}
    		}
    	}
    }
    
    func TestLCALinear(t *testing.T) {
    	testLCAgen(t, genLinear, 10)
    	testLCAgen(t, genLinear, 100)
    }
    
    func TestLCAFwdBack(t *testing.T) {
    	testLCAgen(t, genFwdBack, 10)
    	testLCAgen(t, genFwdBack, 100)
    }
    
    func TestLCAManyPred(t *testing.T) {
    	testLCAgen(t, genManyPred, 10)
    	testLCAgen(t, genManyPred, 100)
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Sun Sep 01 14:25:12 UTC 2019
    - 1.7K bytes
    - Viewed (0)
Back to top