We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 3d06886 commit 0b1b9aeCopy full SHA for 0b1b9ae
test/runtests.jl
@@ -274,6 +274,24 @@ end
274
# Issue #24
275
nodes_not_agg()
276
277
-# Issue 26
+# Issue #26
278
test_symmetric_sweep()
279
+
280
+# Issue #31
281
+for sz in [10, 5, 2]
282
+ a = poisson(sz)
283
+ ml = ruge_stuben(a)
284
+ @test isempty(ml.levels)
285
+ @test size(ml.final_A) == (sz,sz)
286
+ @test AMG.operator_complexity(ml) == 1
287
+ @test AMG.grid_complexity(ml) == 1
288
289
290
+ ml = smoothed_aggregation(a)
291
292
293
294
295
+end
296
297
end
0 commit comments