4617612ffb8419a19357ca90b856f6e7d132f8d6,scipy/sandbox/multigrid/tests/test_sa.py,TestSA,test_user_aggregation,#TestSA#,104

Before Change


        user_cases = []

        //simple 1d example w/ two aggregates
        A = poisson_problem1D(6)
        AggOp = csr_matrix((ones(6),array([0,0,0,1,1,1]),arange(7)),shape=(6,2))
        candidates = ones((6,1))
        user_cases.append((A,AggOp,candidates))

After Change


        user_cases.append((A,AggOp,candidates))

        //simple 1d example w/ two aggregates (not all nodes are aggregated)
        A = poisson(6, stencil="3pt", format="csr")
        AggOp = csr_matrix((ones(4),array([0,0,1,1]),array([0,1,1,2,3,3,4])),shape=(6,2))
        candidates = ones((6,1))
        user_cases.append((A,AggOp,candidates))
Italian Trulli
In pattern: SUPERPATTERN

Frequency: 3

Non-data size: 2

Instances


Project Name: scipy/scipy
Commit Name: 4617612ffb8419a19357ca90b856f6e7d132f8d6
Time: 2008-01-14
Author: wnbell@localhost
File Name: scipy/sandbox/multigrid/tests/test_sa.py
Class Name: TestSA
Method Name: test_user_aggregation


Project Name: scipy/scipy
Commit Name: 4617612ffb8419a19357ca90b856f6e7d132f8d6
Time: 2008-01-14
Author: wnbell@localhost
File Name: scipy/sandbox/multigrid/tests/test_sa.py
Class Name: TestSA
Method Name: setUp


Project Name: scipy/scipy
Commit Name: 4617612ffb8419a19357ca90b856f6e7d132f8d6
Time: 2008-01-14
Author: wnbell@localhost
File Name: scipy/sandbox/multigrid/tests/test_sa.py
Class Name: TestSASolverPerformance
Method Name: setUp