1 /* * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * */ 2 /* */ 3 /* This file is part of the program and library */ 4 /* SCIP --- Solving Constraint Integer Programs */ 5 /* */ 6 /* Copyright (c) 2002-2023 Zuse Institute Berlin (ZIB) */ 7 /* */ 8 /* Licensed under the Apache License, Version 2.0 (the "License"); */ 9 /* you may not use this file except in compliance with the License. */ 10 /* You may obtain a copy of the License at */ 11 /* */ 12 /* http://www.apache.org/licenses/LICENSE-2.0 */ 13 /* */ 14 /* Unless required by applicable law or agreed to in writing, software */ 15 /* distributed under the License is distributed on an "AS IS" BASIS, */ 16 /* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. */ 17 /* See the License for the specific language governing permissions and */ 18 /* limitations under the License. */ 19 /* */ 20 /* You should have received a copy of the Apache-2.0 license */ 21 /* along with SCIP; see the file LICENSE. If not visit scipopt.org. */ 22 /* */ 23 /* * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * */ 24 25 /**@file scipdefplugins.h 26 * @ingroup PUBLICCOREAPI 27 * @brief default SCIP plugins 28 * @author Tobias Achterberg 29 */ 30 31 /*--+----1----+----2----+----3----+----4----+----5----+----6----+----7----+----8----+----9----+----0----+----1----+----2*/ 32 33 #ifndef __SCIP_SCIPDEFPLUGINS_H__ 34 #define __SCIP_SCIPDEFPLUGINS_H__ 35 36 #include "scip/scip.h" 37 38 /* include header files here, such that the user only has to include 39 * scipdefplugins.h 40 */ 41 #include "scip/branch_allfullstrong.h" 42 #include "scip/branch_cloud.h" 43 #include "scip/branch_distribution.h" 44 #include "scip/branch_fullstrong.h" 45 #include "scip/branch_gomory.h" 46 #include "scip/branch_inference.h" 47 #include "scip/branch_leastinf.h" 48 #include "scip/branch_lookahead.h" 49 #include "scip/branch_mostinf.h" 50 #include "scip/branch_multaggr.h" 51 #include "scip/branch_nodereopt.h" 52 #include "scip/branch_pscost.h" 53 #include "scip/branch_random.h" 54 #include "scip/branch_relpscost.h" 55 #include "scip/branch_vanillafullstrong.h" 56 #include "scip/compr_largestrepr.h" 57 #include "scip/compr_weakcompr.h" 58 #include "scip/cons_and.h" 59 #include "scip/cons_benders.h" 60 #include "scip/cons_benderslp.h" 61 #include "scip/cons_bounddisjunction.h" 62 #include "scip/cons_cardinality.h" 63 #include "scip/cons_conjunction.h" 64 #include "scip/cons_countsols.h" 65 #include "scip/cons_cumulative.h" 66 #include "scip/cons_disjunction.h" 67 #include "scip/cons_indicator.h" 68 #include "scip/cons_integral.h" 69 #include "scip/cons_knapsack.h" 70 #include "scip/cons_linear.h" 71 #include "scip/cons_linking.h" 72 #include "scip/cons_logicor.h" 73 #include "scip/cons_nonlinear.h" 74 #include "scip/cons_or.h" 75 #include "scip/cons_orbisack.h" 76 #include "scip/cons_orbitope.h" 77 #include "scip/cons_pseudoboolean.h" 78 #include "scip/cons_setppc.h" 79 #include "scip/cons_sos1.h" 80 #include "scip/cons_sos2.h" 81 #include "scip/cons_superindicator.h" 82 #include "scip/cons_symresack.h" 83 #include "scip/cons_varbound.h" 84 #include "scip/cons_xor.h" 85 #include "scip/cons_components.h" 86 #include "scip/disp_default.h" 87 #include "scip/dialog_default.h" 88 #include "scip/event_estim.h" 89 #include "scip/event_solvingphase.h" 90 #include "scip/event_softtimelimit.h" 91 #include "scip/expr_abs.h" 92 #include "scip/expr_entropy.h" 93 #include "scip/expr_exp.h" 94 #include "scip/expr_log.h" 95 #include "scip/expr_pow.h" 96 #include "scip/expr_product.h" 97 #include "scip/expr_sum.h" 98 #include "scip/expr_trig.h" 99 #include "scip/expr_value.h" 100 #include "scip/expr_var.h" 101 #include "scip/heur_actconsdiving.h" 102 #include "scip/heur_adaptivediving.h" 103 #include "scip/heur_bound.h" 104 #include "scip/heur_clique.h" 105 #include "scip/heur_coefdiving.h" 106 #include "scip/heur_completesol.h" 107 #include "scip/heur_conflictdiving.h" 108 #include "scip/heur_crossover.h" 109 #include "scip/heur_dins.h" 110 #include "scip/heur_distributiondiving.h" 111 #include "scip/heur_dps.h" 112 #include "scip/heur_dualval.h" 113 #include "scip/heur_farkasdiving.h" 114 #include "scip/heur_feaspump.h" 115 #include "scip/heur_fixandinfer.h" 116 #include "scip/heur_fracdiving.h" 117 #include "scip/heur_gins.h" 118 #include "scip/heur_guideddiving.h" 119 #include "scip/heur_indicator.h" 120 #include "scip/heur_indicatordiving.h" 121 #include "scip/heur_intdiving.h" 122 #include "scip/heur_intshifting.h" 123 #include "scip/heur_linesearchdiving.h" 124 #include "scip/heur_localbranching.h" 125 #include "scip/heur_locks.h" 126 #include "scip/heur_lpface.h" 127 #include "scip/heur_alns.h" 128 #include "scip/heur_multistart.h" 129 #include "scip/heur_mutation.h" 130 #include "scip/heur_mpec.h" 131 #include "scip/heur_nlpdiving.h" 132 #include "scip/heur_objpscostdiving.h" 133 #include "scip/heur_octane.h" 134 #include "scip/heur_ofins.h" 135 #include "scip/heur_oneopt.h" 136 #include "scip/heur_padm.h" 137 #include "scip/heur_pscostdiving.h" 138 #include "scip/heur_proximity.h" 139 #include "scip/heur_randrounding.h" 140 #include "scip/heur_rens.h" 141 #include "scip/heur_reoptsols.h" 142 #include "scip/heur_repair.h" 143 #include "scip/heur_rins.h" 144 #include "scip/heur_rootsoldiving.h" 145 #include "scip/heur_rounding.h" 146 #include "scip/heur_scheduler.h" 147 #include "scip/heur_shiftandpropagate.h" 148 #include "scip/heur_shifting.h" 149 #include "scip/heur_simplerounding.h" 150 #include "scip/heur_subnlp.h" 151 #include "scip/heur_trivial.h" 152 #include "scip/heur_trivialnegation.h" 153 #include "scip/heur_trustregion.h" 154 #include "scip/heur_trysol.h" 155 #include "scip/heur_twoopt.h" 156 #include "scip/heur_undercover.h" 157 #include "scip/heur_vbounds.h" 158 #include "scip/heur_veclendiving.h" 159 #include "scip/heur_zeroobj.h" 160 #include "scip/heur_zirounding.h" 161 #include "scip/nlhdlr_bilinear.h" 162 #include "scip/nlhdlr_convex.h" 163 #include "scip/nlhdlr_default.h" 164 #include "scip/nlhdlr_perspective.h" 165 #include "scip/nlhdlr_quadratic.h" 166 #include "scip/nlhdlr_quotient.h" 167 #include "scip/nlhdlr_signomial.h" 168 #include "scip/nlhdlr_soc.h" 169 #include "scip/nodesel_bfs.h" 170 #include "scip/nodesel_breadthfirst.h" 171 #include "scip/nodesel_dfs.h" 172 #include "scip/nodesel_estimate.h" 173 #include "scip/nodesel_hybridestim.h" 174 #include "scip/nodesel_uct.h" 175 #include "scip/nodesel_restartdfs.h" 176 #include "scip/presol_boundshift.h" 177 #include "scip/presol_convertinttobin.h" 178 #include "scip/presol_domcol.h" 179 #include "scip/presol_dualagg.h" 180 #include "scip/presol_dualcomp.h" 181 #include "scip/presol_dualinfer.h" 182 #include "scip/presol_gateextraction.h" 183 #include "scip/presol_implics.h" 184 #include "scip/presol_inttobinary.h" 185 #include "scip/presol_milp.h" 186 #include "scip/presol_redvub.h" 187 #include "scip/presol_qpkktref.h" 188 #include "scip/presol_trivial.h" 189 #include "scip/presol_tworowbnd.h" 190 #include "scip/presol_sparsify.h" 191 #include "scip/presol_dualsparsify.h" 192 #include "scip/presol_stuffing.h" 193 #include "scip/prop_dualfix.h" 194 #include "scip/prop_genvbounds.h" 195 #include "scip/prop_nlobbt.h" 196 #include "scip/prop_obbt.h" 197 #include "scip/prop_probing.h" 198 #include "scip/prop_pseudoobj.h" 199 #include "scip/prop_redcost.h" 200 #include "scip/prop_rootredcost.h" 201 #include "scip/prop_symmetry.h" 202 #include "scip/prop_vbounds.h" 203 #include "scip/reader_bnd.h" 204 #include "scip/reader_ccg.h" 205 #include "scip/reader_cip.h" 206 #include "scip/reader_cnf.h" 207 #include "scip/reader_cor.h" 208 #include "scip/reader_dec.h" 209 #include "scip/reader_diff.h" 210 #include "scip/reader_fix.h" 211 #include "scip/reader_fzn.h" 212 #include "scip/reader_gms.h" 213 #include "scip/reader_lp.h" 214 #include "scip/reader_mps.h" 215 #include "scip/reader_mst.h" 216 #include "scip/reader_nl.h" 217 #include "scip/reader_opb.h" 218 #include "scip/reader_osil.h" 219 #include "scip/reader_pip.h" 220 #include "scip/reader_ppm.h" 221 #include "scip/reader_pbm.h" 222 #include "scip/reader_rlp.h" 223 #include "scip/reader_smps.h" 224 #include "scip/reader_sol.h" 225 #include "scip/reader_sto.h" 226 #include "scip/reader_tim.h" 227 #include "scip/reader_wbo.h" 228 #include "scip/reader_zpl.h" 229 #include "scip/sepa_eccuts.h" 230 #include "scip/sepa_cgmip.h" 231 #include "scip/sepa_clique.h" 232 #include "scip/sepa_closecuts.h" 233 #include "scip/sepa_aggregation.h" 234 #include "scip/sepa_convexproj.h" 235 #include "scip/sepa_disjunctive.h" 236 #include "scip/sepa_gauge.h" 237 #include "scip/sepa_gomory.h" 238 #include "scip/sepa_impliedbounds.h" 239 #include "scip/sepa_interminor.h" 240 #include "scip/sepa_intobj.h" 241 #include "scip/sepa_lagromory.h" 242 #include "scip/sepa_mcf.h" 243 #include "scip/sepa_minor.h" 244 #include "scip/sepa_mixing.h" 245 #include "scip/sepa_oddcycle.h" 246 #include "scip/sepa_rapidlearning.h" 247 #include "scip/sepa_rlt.h" 248 #include "scip/sepa_zerohalf.h" 249 #include "scip/scipshell.h" 250 #include "scip/symmetry.h" 251 #include "scip/table_default.h" 252 #include "scip/concsolver_scip.h" 253 #include "scip/benders_default.h" 254 #include "scip/cutsel_hybrid.h" 255 #include "scip/cutsel_dynamic.h" 256 #include "scip/cutsel_ensemble.h" 257 258 #include "scip/expr_varidx.h" 259 #include "scip/nlpi_ipopt.h" 260 #include "scip/nlpi_filtersqp.h" 261 #include "scip/nlpi_worhp.h" 262 #include "scip/nlpi_all.h" 263 264 #ifdef __cplusplus 265 extern "C" { 266 #endif 267 268 /** includes default SCIP plugins into SCIP */ 269 SCIP_EXPORT 270 SCIP_RETCODE SCIPincludeDefaultPlugins( 271 SCIP* scip /**< SCIP data structure */ 272 ); 273 274 #ifdef __cplusplus 275 } 276 #endif 277 278 #endif 279