Home
last modified time | relevance | path

Searched refs:variable_size (Results 1 – 25 of 1046) sorted by relevance

12345678910>>...42

/dports/math/py-or-tools/or-tools-9.2/ortools/linear_solver/
H A Dgurobi_proto_solver.cc327 const int variable_size = model.variable_size(); in GurobiSolveProto() local
330 std::vector<double> obj_coeffs(variable_size, 0); in GurobiSolveProto()
331 std::vector<double> lb(variable_size); in GurobiSolveProto()
332 std::vector<double> ub(variable_size); in GurobiSolveProto()
333 std::vector<char> ctype(variable_size); in GurobiSolveProto()
334 std::vector<const char*> varnames(variable_size); in GurobiSolveProto()
335 for (int v = 0; v < variable_size; ++v) { in GurobiSolveProto()
543 response.mutable_variable_value()->Resize(variable_size, 0); in GurobiSolveProto()
552 for (int v = 0; v < variable_size; ++v) { in GurobiSolveProto()
573 solution->mutable_variable_value()->Resize(variable_size, 0); in GurobiSolveProto()
[all …]
H A Dmodel_exporter.cc358 proto_.variable_size()); in AppendComments()
431 if (var_index < 0 || var_index >= proto_.variable_size()) { in WriteLpTerm()
509 std::max(proto_.variable_size(), proto_.constraint_size()) - 1) in ComputeMpsSmartColumnWidths()
550 std::vector<bool> show_variable(proto_.variable_size(), in ExportModelAsLpFormat()
552 for (int var_index = 0; var_index < proto_.variable_size(); ++var_index) { in ExportModelAsLpFormat()
593 if (binary_var_index < 0 || binary_var_index >= proto_.variable_size()) { in ExportModelAsLpFormat()
610 for (int var_index = 0; var_index < proto_.variable_size(); ++var_index) { in ExportModelAsLpFormat()
714 for (int var_index = 0; var_index < proto_.variable_size(); ++var_index) { in AppendMpsColumns()
786 proto_.variable_size()); in ExportModelAsMpsFormat()
791 if (var_index < 0 || var_index >= proto_.variable_size()) { in ExportModelAsMpsFormat()
[all …]
H A Dmodel_validator.cc179 if (var_index < 0 || var_index >= model.variable_size()) { in FindErrorInMPIndicatorConstraint()
210 if (var_index < 0 || var_index >= model.variable_size()) { in FindErrorInMPSosConstraint()
234 const int num_vars = model.variable_size(); in FindErrorInMPQuadraticConstraint()
294 const int num_vars = model.variable_size(); in FindErrorInMPAbsConstraint()
315 const int num_vars = model.variable_size(); in FindErrorInMPAndOrConstraint()
350 const int num_vars = model.variable_size(); in FindErrorInMPMinMaxConstraint()
438 const int num_vars = model.variable_size(); in FindErrorInMPModelProto()
605 if (model.get().variable_size() == 0 && model.get().constraint_size() == 0 && in ExtractValidMPModelOrPopulateResponseStatus()
633 const int num_vars = model.variable_size(); in FindFeasibilityErrorInSolutionHint()
696 int num_vars = model.variable_size(); in FindErrorInMPModelDeltaProto()
[all …]
H A Dscip_proto_solver.cc511 solution_hint.var_index_size() != model.variable_size();
540 for (int v = 0; v < model.variable_size(); ++v) {
668 std::vector<SCIP_VAR*> scip_variables(model.variable_size(), nullptr);
732 for (int v = 0; v < model.variable_size(); ++v) {
872 variable_value.Reserve(model.variable_size());
873 for (int v = 0; v < model.variable_size(); ++v) {
/dports/devel/arm-none-eabi-gcc492/gcc-4.9.2/gcc/lto/
H A Dlto-tree.h31 struct GTY((variable_size)) lang_decl
36 struct GTY((variable_size)) lang_type
/dports/lang/gcc48/gcc-4.8.5/gcc/lto/
H A Dlto-tree.h31 struct GTY((variable_size)) lang_decl
36 struct GTY((variable_size)) lang_type
/dports/devel/mingw32-gcc/gcc-4.8.1/gcc/lto/
H A Dlto-tree.h31 struct GTY((variable_size)) lang_decl
36 struct GTY((variable_size)) lang_type
/dports/lang/gcc48/gcc-4.8.5/gcc/c/
H A Dc-lang.h26 struct GTY((variable_size)) lang_type {
38 struct GTY((variable_size)) lang_decl {
/dports/devel/mingw32-gcc/gcc-4.8.1/gcc/c/
H A Dc-lang.h26 struct GTY((variable_size)) lang_type {
38 struct GTY((variable_size)) lang_decl {
/dports/devel/arm-none-eabi-gcc492/gcc-4.9.2/gcc/c/
H A Dc-lang.h26 struct GTY((variable_size)) lang_type {
38 struct GTY((variable_size)) lang_decl {
/dports/math/py-or-tools/or-tools-9.2/ortools/lp_data/
H A Dmodel_reader.cc33 const bool is_model_proto = model_proto.variable_size() > 0; in LoadMPModelProtoFromModelOrRequest()
34 const bool is_request_proto = request_proto.model().variable_size() > 0; in LoadMPModelProtoFromModelOrRequest()
/dports/graphics/blender/blender-2.91.0/source/blender/compositor/operations/
H A DCOM_ScaleOperation.h29 void setVariableSize(bool variable_size) in setVariableSize() argument
31 m_variable_size = variable_size; in setVariableSize()
/dports/science/hdf5-18/hdf5-1.8.21/src/
H A DH5Fsuper_cache.c125 size_t variable_size; /*variable sizeof superblock */ in H5F_sblock_load() local
183 variable_size = (size_t)H5F_SUPERBLOCK_VARLEN_SIZE(super_vers, f); in H5F_sblock_load()
184 HDassert(variable_size > 0); in H5F_sblock_load()
185 HDassert(fixed_size + variable_size <= sizeof(sbuf)); in H5F_sblock_load()
188 if(H5FD_set_eoa(lf, H5FD_MEM_SUPER, (haddr_t)(fixed_size + variable_size)) < 0) in H5F_sblock_load()
190 if(H5FD_read(lf, dxpl, H5FD_MEM_SUPER, (haddr_t)fixed_size, variable_size, p) < 0) in H5F_sblock_load()
/dports/math/vtk6/VTK-6.2.0/ThirdParty/hdf5/vtkhdf5/src/
H A DH5Fsuper_cache.c126 size_t variable_size; /*variable sizeof superblock */ in H5F_sblock_load() local
180 variable_size = (size_t)H5F_SUPERBLOCK_VARLEN_SIZE(super_vers, f); in H5F_sblock_load()
181 HDassert(variable_size > 0); in H5F_sblock_load()
182 HDassert(fixed_size + variable_size <= sizeof(sbuf)); in H5F_sblock_load()
185 if(H5FD_set_eoa(lf, H5FD_MEM_SUPER, (haddr_t)(fixed_size + variable_size)) < 0) in H5F_sblock_load()
187 if(H5FD_read(lf, dxpl_id, H5FD_MEM_SUPER, (haddr_t)fixed_size, variable_size, p) < 0) in H5F_sblock_load()
/dports/devel/mdds/mdds-1.7.0/include/mdds/
H A Dtrie_map.hpp148 static constexpr bool variable_size = false; member
161 static constexpr bool variable_size = true; member
177 static constexpr bool variable_size = true; member
/dports/emulators/dolphin-emu/dolphin-3152428/Externals/WIL/include/wil/
H A Dcommon.h704 struct variable_size;
707 struct variable_size<1>
713 struct variable_size<2>
719 struct variable_size<4>
725 struct variable_size<8>
733 typedef typename variable_size<sizeof(T)>::type type;
/dports/archivers/php73-zip/php-7.3.33/ext/zip/lib/
H A Dzip_dirent.c302 zip_uint32_t size, variable_size; in _zip_dirent_read() local
378 variable_size = (zip_uint32_t)filename_len+(zip_uint32_t)ef_len+(zip_uint32_t)comment_len; in _zip_dirent_read()
381 if (_zip_buffer_left(buffer) < variable_size) { in _zip_dirent_read()
389 if ((buffer = _zip_buffer_new_from_source(src, variable_size, NULL, error)) == NULL) { in _zip_dirent_read()
528 return (zip_int64_t)(size + variable_size); in _zip_dirent_read()
/dports/lang/php73/php-7.3.33/ext/zip/lib/
H A Dzip_dirent.c302 zip_uint32_t size, variable_size; in _zip_dirent_read() local
378 variable_size = (zip_uint32_t)filename_len+(zip_uint32_t)ef_len+(zip_uint32_t)comment_len; in _zip_dirent_read()
381 if (_zip_buffer_left(buffer) < variable_size) { in _zip_dirent_read()
389 if ((buffer = _zip_buffer_new_from_source(src, variable_size, NULL, error)) == NULL) { in _zip_dirent_read()
528 return (zip_int64_t)(size + variable_size); in _zip_dirent_read()
/dports/www/mod_php73/php-7.3.33/ext/zip/lib/
H A Dzip_dirent.c302 zip_uint32_t size, variable_size; in _zip_dirent_read() local
378 variable_size = (zip_uint32_t)filename_len+(zip_uint32_t)ef_len+(zip_uint32_t)comment_len; in _zip_dirent_read()
381 if (_zip_buffer_left(buffer) < variable_size) { in _zip_dirent_read()
389 if ((buffer = _zip_buffer_new_from_source(src, variable_size, NULL, error)) == NULL) { in _zip_dirent_read()
528 return (zip_int64_t)(size + variable_size); in _zip_dirent_read()
/dports/math/py-or-tools/or-tools-9.2/ortools/sat/
H A Dlp_utils.cc64 const int num_variables = mp_model->variable_size(); in ApplyVarScaling()
104 const int num_variables = mp_model->variable_size(); in ScaleContinuousVariables()
187 const int num_variables = mp_model->variable_size(); in MakeBoundsOfIntegerVariablesInteger()
224 const int num_variables = mp_model->variable_size(); in RemoveNearZeroTerms()
298 const int num_variables = mp_model.variable_size(); in MPModelProtoValidationBeforeConversion()
341 const int num_variables = mp_model->variable_size(); in DetectImpliedIntegers()
791 const int num_variables = mp_model.variable_size(); in ConvertMPModelProtoToCpModelProto()
1077 const int num_variables = mp_model.variable_size(); in ConvertBinaryMPModelProtoToBooleanProblem()
/dports/math/py-or-tools/or-tools-9.2/ortools/math_opt/io/
H A Dproto_converter.cc89 const int num_vars = model.variable_size(); in MPModelProtoToMathOptModel()
97 for (int i = 0; i < model.variable_size(); ++i) { in MPModelProtoToMathOptModel()
/dports/devel/arm-none-eabi-gcc492/gcc-4.9.2/gcc/
H A Dstor-layout.h110 extern tree variable_size (tree);
/dports/science/InsightToolkit/ITK-5.0.1/Modules/ThirdParty/HDF5/src/itkhdf5/src/
H A DH5Fsuper_cache.c212 size_t variable_size; /* Variable size of superblock */ in H5F__superblock_prefix_decode() local
215variable_size = (size_t)H5F_SUPERBLOCK_VARLEN_SIZE(sblock->super_vers, sblock->sizeof_addr, sblock… in H5F__superblock_prefix_decode()
216 HDassert(variable_size > 0); in H5F__superblock_prefix_decode()
219 …f(H5F__set_eoa(udata->f, H5FD_MEM_SUPER, (haddr_t)(H5F_SUPERBLOCK_FIXED_SIZE + variable_size)) < 0) in H5F__superblock_prefix_decode()
/dports/science/hdf5/hdf5-1.10.6/src/
H A DH5Fsuper_cache.c212 size_t variable_size; /* Variable size of superblock */ in H5F__superblock_prefix_decode() local
215variable_size = (size_t)H5F_SUPERBLOCK_VARLEN_SIZE(sblock->super_vers, sblock->sizeof_addr, sblock… in H5F__superblock_prefix_decode()
216 HDassert(variable_size > 0); in H5F__superblock_prefix_decode()
219 …f(H5F__set_eoa(udata->f, H5FD_MEM_SUPER, (haddr_t)(H5F_SUPERBLOCK_FIXED_SIZE + variable_size)) < 0) in H5F__superblock_prefix_decode()
/dports/math/vtk8/VTK-8.2.0/ThirdParty/hdf5/vtkhdf5/src/
H A DH5Fsuper_cache.c212 size_t variable_size; /* Variable size of superblock */ in H5F__superblock_prefix_decode() local
215variable_size = (size_t)H5F_SUPERBLOCK_VARLEN_SIZE(sblock->super_vers, sblock->sizeof_addr, sblock… in H5F__superblock_prefix_decode()
216 HDassert(variable_size > 0); in H5F__superblock_prefix_decode()
219 …f(H5F__set_eoa(udata->f, H5FD_MEM_SUPER, (haddr_t)(H5F_SUPERBLOCK_FIXED_SIZE + variable_size)) < 0) in H5F__superblock_prefix_decode()

12345678910>>...42