Scippy

SCIP

Solving Constraint Integer Programs

reader_rpa.c File Reference

Detailed Description

Ringpacking problem reader.

Author
Benjamin Mueller

This file implements the reader/parser used to read the ringpacking input data. For more details see Parsing the input format and creating the problem.

Author
Benjamin Mueller

This file implements the reader/parser used to read the ringpacking input data. For more details see How to add file readers.

Definition in file reader_rpa.c.

#include <assert.h>
#include <string.h>
#include "reader_rpa.h"
#include "probdata_rpa.h"

Go to the source code of this file.

Macros

#define DEFAULT_VERIFICATION_NLPTILIMSOFT   1e+20
 
#define DEFAULT_VERIFICATION_NLPNODELIMSOFT   100L
 
#define DEFAULT_VERIFICATION_HEURTILIMSOFT   1e+20
 
#define DEFAULT_VERIFICATION_HEURITERLIMSOFT   100
 
#define DEFAULT_VERIFICATION_TOTALTILIMSOFT   1e+20
 
Reader properties
#define READER_NAME   "rpareader"
 
#define READER_DESC   "file reader for ringpacking data format"
 
#define READER_EXTENSION   "rpa"
 

Functions

Callback methods
static SCIP_DECL_READERREAD (readerReadRpa)
 
Interface methods
SCIP_RETCODE SCIPincludeReaderRpa (SCIP *scip)
 

Macro Definition Documentation

◆ READER_NAME

#define READER_NAME   "rpareader"

Definition at line 90 of file reader_rpa.c.

Referenced by SCIPincludeReaderRpa().

◆ READER_DESC

#define READER_DESC   "file reader for ringpacking data format"

Definition at line 91 of file reader_rpa.c.

Referenced by SCIPincludeReaderRpa().

◆ READER_EXTENSION

#define READER_EXTENSION   "rpa"

Definition at line 92 of file reader_rpa.c.

Referenced by SCIPincludeReaderRpa().

◆ DEFAULT_VERIFICATION_NLPTILIMSOFT

#define DEFAULT_VERIFICATION_NLPTILIMSOFT   1e+20

soft time limit for each verification NLP

Definition at line 97 of file reader_rpa.c.

Referenced by SCIPincludeReaderRpa().

◆ DEFAULT_VERIFICATION_NLPNODELIMSOFT

#define DEFAULT_VERIFICATION_NLPNODELIMSOFT   100L

soft node limit for each verification NLP

Definition at line 98 of file reader_rpa.c.

Referenced by SCIPincludeReaderRpa().

◆ DEFAULT_VERIFICATION_HEURTILIMSOFT

#define DEFAULT_VERIFICATION_HEURTILIMSOFT   1e+20

soft time limit for heuristic verification

Definition at line 99 of file reader_rpa.c.

Referenced by SCIPincludeReaderRpa().

◆ DEFAULT_VERIFICATION_HEURITERLIMSOFT

#define DEFAULT_VERIFICATION_HEURITERLIMSOFT   100

soft iteration limit for each heuristic verification

Definition at line 100 of file reader_rpa.c.

Referenced by SCIPincludeReaderRpa().

◆ DEFAULT_VERIFICATION_TOTALTILIMSOFT

#define DEFAULT_VERIFICATION_TOTALTILIMSOFT   1e+20

total time limit for all verification problems during the enumeration

Definition at line 101 of file reader_rpa.c.

Referenced by SCIPincludeReaderRpa().

Function Documentation

◆ SCIP_DECL_READERREAD()

◆ SCIPincludeReaderRpa()