Commit f93ee49c authored by Davis King's avatar Davis King

Made requires clause a little more sensible.

parent 12bc559d
...@@ -75,9 +75,12 @@ namespace dlib ...@@ -75,9 +75,12 @@ namespace dlib
void set_num_filters(long num) void set_num_filters(long num)
{ {
DLIB_CASSERT(num > 0); DLIB_CASSERT(num > 0);
DLIB_CASSERT(get_layer_params().size() == 0, if (num != num_filters_)
"You can't change the number of filters in con_ if the parameter tensor has already been allocated."); {
num_filters_ = num; DLIB_CASSERT(get_layer_params().size() == 0,
"You can't change the number of filters in con_ if the parameter tensor has already been allocated.");
num_filters_ = num;
}
} }
double get_learning_rate_multiplier () const { return learning_rate_multiplier; } double get_learning_rate_multiplier () const { return learning_rate_multiplier; }
...@@ -371,9 +374,12 @@ namespace dlib ...@@ -371,9 +374,12 @@ namespace dlib
void set_num_filters(long num) void set_num_filters(long num)
{ {
DLIB_CASSERT(num > 0); DLIB_CASSERT(num > 0);
DLIB_CASSERT(get_layer_params().size() == 0, if (num != num_filters_)
"You can't change the number of filters in cont_ if the parameter tensor has already been allocated."); {
num_filters_ = num; DLIB_CASSERT(get_layer_params().size() == 0,
"You can't change the number of filters in cont_ if the parameter tensor has already been allocated.");
num_filters_ = num;
}
} }
double get_learning_rate_multiplier () const { return learning_rate_multiplier; } double get_learning_rate_multiplier () const { return learning_rate_multiplier; }
......
...@@ -730,7 +730,7 @@ namespace dlib ...@@ -730,7 +730,7 @@ namespace dlib
/*! /*!
requires requires
- num > 0 - num > 0
- get_layer_params().size() == 0 - get_layer_params().size() == 0 || num_filters() == num
(i.e. You can't change the number of filters in con_ if the parameter (i.e. You can't change the number of filters in con_ if the parameter
tensor has already been allocated.) tensor has already been allocated.)
ensures ensures
...@@ -974,7 +974,7 @@ namespace dlib ...@@ -974,7 +974,7 @@ namespace dlib
/*! /*!
requires requires
- num > 0 - num > 0
- get_layer_params().size() == 0 - get_layer_params().size() == 0 || num_filters() == num
(i.e. You can't change the number of filters in cont_ if the parameter (i.e. You can't change the number of filters in cont_ if the parameter
tensor has already been allocated.) tensor has already been allocated.)
ensures ensures
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment