Skip to content
GitLab
Menu
Projects
Groups
Snippets
Loading...
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
Menu
Open sidebar
OpenDAS
dlib
Commits
78aef59d
"src/git@developer.sourcefind.cn:renzhc/diffusers_dcu.git" did not exist on "77aadfee6a891ab9fcfb780f87c693f7a5beeb8e"
Commit
78aef59d
authored
May 22, 2014
by
Davis King
Browse files
Added another test
parent
a92de57e
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
3 additions
and
2 deletions
+3
-2
dlib/test/matrix.cpp
dlib/test/matrix.cpp
+3
-2
No files found.
dlib/test/matrix.cpp
View file @
78aef59d
...
@@ -1304,14 +1304,15 @@ namespace
...
@@ -1304,14 +1304,15 @@ namespace
}
}
{
{
matrix
<
int
>
m
(
4
,
1
),
mm
;
matrix
<
int
>
m
(
4
,
1
),
mm
,
mmm
;
mm
=
(
m
=
1
,
2
,
3
,
4
);
mmm
=
mm
=
(
m
=
1
,
2
,
3
,
4
);
DLIB_TEST
(
m
(
0
)
==
1
);
DLIB_TEST
(
m
(
0
)
==
1
);
DLIB_TEST
(
m
(
1
)
==
2
);
DLIB_TEST
(
m
(
1
)
==
2
);
DLIB_TEST
(
m
(
2
)
==
3
);
DLIB_TEST
(
m
(
2
)
==
3
);
DLIB_TEST
(
m
(
3
)
==
4
);
DLIB_TEST
(
m
(
3
)
==
4
);
DLIB_TEST
(
mm
==
m
);
DLIB_TEST
(
mm
==
m
);
DLIB_TEST
(
mmm
==
m
);
DLIB_TEST
(
mm
(
0
)
==
1
);
DLIB_TEST
(
mm
(
0
)
==
1
);
DLIB_TEST
(
mm
(
1
)
==
2
);
DLIB_TEST
(
mm
(
1
)
==
2
);
DLIB_TEST
(
mm
(
2
)
==
3
);
DLIB_TEST
(
mm
(
2
)
==
3
);
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
.
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment