Home
last modified time | relevance | path

Searched refs:new_lower_bounds (Results 1 – 9 of 9) sorted by relevance

/dports/www/gitlab-workhorse/gitlab-foss-0a901d60f8ae4a60c04ae82e6e9c3a03e9321417/spec/lib/gitlab/pagination/keyset/
H A Dpage_spec.rb34 subject { page.next(new_lower_bounds) }
55 expect(subject.lower_bounds).to eq(new_lower_bounds)
/dports/math/py-or-tools/or-tools-9.2/ortools/glop/
H A Dvariables_info.cc23 const DenseRow& new_lower_bounds, const DenseRow& new_upper_bounds) { in LoadBoundsAndReturnTrueIfUnchanged() argument
25 DCHECK_EQ(num_cols, new_lower_bounds.size()); in LoadBoundsAndReturnTrueIfUnchanged()
29 if (lower_bounds_ == new_lower_bounds && upper_bounds_ == new_upper_bounds) { in LoadBoundsAndReturnTrueIfUnchanged()
33 lower_bounds_ = new_lower_bounds; in LoadBoundsAndReturnTrueIfUnchanged()
H A Dvariables_info.h66 bool LoadBoundsAndReturnTrueIfUnchanged(const DenseRow& new_lower_bounds,
/dports/math/py-or-tools/or-tools-9.2/ortools/sat/
H A Dsynchronization.cc721 const std::vector<int64_t>& new_lower_bounds, in ReportPotentialNewBounds() argument
723 CHECK_EQ(variables.size(), new_lower_bounds.size()); in ReportPotentialNewBounds()
733 const int64_t new_lb = new_lower_bounds[i]; in ReportPotentialNewBounds()
824 int id, std::vector<int>* variables, std::vector<int64_t>* new_lower_bounds, in GetChangedBounds() argument
827 new_lower_bounds->clear(); in GetChangedBounds()
833 new_lower_bounds->push_back(synchronized_lower_bounds_[var]); in GetChangedBounds()
H A Dsynchronization.h422 const std::vector<int64_t>& new_lower_bounds,
443 std::vector<int64_t>* new_lower_bounds,
H A Dcp_model_solver.cc772 std::vector<int64_t> new_lower_bounds;
797 new_lower_bounds.push_back(new_lb);
817 new_lower_bounds.push_back(1);
820 new_lower_bounds.push_back(0);
827 model_proto, model->Name(), model_variables, new_lower_bounds,
871 std::vector<int64_t> new_lower_bounds;
874 id, &model_variables, &new_lower_bounds, &new_upper_bounds);
882 const IntegerValue new_lb(new_lower_bounds[i]);
H A Dcp_model_lns.cc63 std::vector<int64_t> new_lower_bounds; in Synchronize() local
66 &new_lower_bounds, &new_upper_bounds); in Synchronize()
75 const int64_t new_lb = new_lower_bounds[i]; in Synchronize()
/dports/misc/opennn/opennn-5.0.5/opennn/
H A Dbounding_layer.cpp299 void BoundingLayer::set_lower_bounds(const Tensor<type, 1>& new_lower_bounds) in set_lower_bounds() argument
305 if(new_lower_bounds.size() != neurons_number) in set_lower_bounds()
320 lower_bounds = new_lower_bounds; in set_lower_bounds()
/dports/math/py-or-tools/or-tools-9.2/ortools/lp_data/
H A Dlp_data.cc1013 DenseRow new_lower_bounds(num_vars, 0);
1023 new_lower_bounds[i] = new_lower_bound;
1026 variable_lower_bounds_.swap(new_lower_bounds);