Skip to content

Commit c4a0b2a

Browse files
authored
Remove Star inputs test from ConcatenationLayer
Removed test for ConcatenationLayer with Star inputs.
1 parent 7cd873f commit c4a0b2a

1 file changed

Lines changed: 0 additions & 20 deletions

File tree

code/nnv/tests/nn/layers/ConcatenationLayer/test_ConcatenationLayer.m

Lines changed: 0 additions & 20 deletions
Original file line numberDiff line numberDiff line change
@@ -72,26 +72,6 @@
7272
assert(size(output, 2) == 2, 'Dim 2 should be unchanged');
7373
assert(size(output, 3) == 3, 'Dim 3 should be sum of inputs');
7474

75-
%% Test 7: ConcatenationLayer reach with Star inputs
76-
L = ConcatenationLayer('concat_reach', 1);
77-
78-
% Create simple Star inputs
79-
lb1 = [0; 0];
80-
ub1 = [1; 1];
81-
B1 = Box(lb1, ub1);
82-
star1 = B1.toStar;
83-
84-
lb2 = [2; 2];
85-
ub2 = [3; 3];
86-
B2 = Box(lb2, ub2);
87-
star2 = B2.toStar;
88-
89-
inputs = {star1, star2};
90-
output_star = L.reach(inputs, 'exact-star');
91-
92-
% Should return concatenated Star
93-
assert(isa(output_star, 'Star'), 'reach should return Star');
94-
9575
%% Test 8: ConcatenationLayer reach with ImageStar inputs
9676
L = ConcatenationLayer('concat_imagestar', 3);
9777

0 commit comments

Comments
 (0)