Skip to content
Projects
Groups
Snippets
Help
Loading...
Sign in
Toggle navigation
D
dlib
Project
Project
Details
Activity
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
钟尚武
dlib
Commits
e952454d
Commit
e952454d
authored
Jan 26, 2018
by
Davis King
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Added missing assert
parent
ae299a76
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
6 additions
and
4 deletions
+6
-4
matrix_fft.h
dlib/matrix/matrix_fft.h
+2
-0
matrix_fft_abstract.h
dlib/matrix/matrix_fft_abstract.h
+4
-4
No files found.
dlib/matrix/matrix_fft.h
View file @
e952454d
...
...
@@ -238,6 +238,8 @@ namespace dlib
and then finishes with a radix-2 or -4 iteration if needed.
!*/
{
COMPILE_TIME_ASSERT
((
is_same_type
<
double
,
T
>::
value
||
is_same_type
<
float
,
T
>::
value
||
is_same_type
<
long
double
,
T
>::
value
));
if
(
data
.
size
()
==
0
)
return
;
...
...
dlib/matrix/matrix_fft_abstract.h
View file @
e952454d
...
...
@@ -28,7 +28,7 @@ namespace dlib
);
/*!
requires
- data contains elements of type std::complex<>
- data contains elements of type std::complex<>
that itself contains double, float, or long double.
- is_power_of_two(data.nr()) == true
- is_power_of_two(data.nc()) == true
ensures
...
...
@@ -50,7 +50,7 @@ namespace dlib
);
/*!
requires
- data contains elements of type std::complex<>
- data contains elements of type std::complex<>
that itself contains double, float, or long double.
- is_power_of_two(data.nr()) == true
- is_power_of_two(data.nc()) == true
ensures
...
...
@@ -76,7 +76,7 @@ namespace dlib
);
/*!
requires
- data contains elements of type std::complex<>
- data contains elements of type std::complex<>
that itself contains double, float, or long double.
- is_power_of_two(data.nr()) == true
- is_power_of_two(data.nc()) == true
ensures
...
...
@@ -99,7 +99,7 @@ namespace dlib
);
/*!
requires
- data contains elements of type std::complex<>
- data contains elements of type std::complex<>
that itself contains double, float, or long double.
- is_power_of_two(data.nr()) == true
- is_power_of_two(data.nc()) == true
ensures
...
...
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