type definitions for bandit selection algorithms
This file defines the interface for bandit selection algorithms implemented in C. see Bandit Algorithms for all publicly available bandit methods.
Definition in file type_bandit.h.
#include "scip/def.h"
#include "scip/type_scip.h"
#include "scip/type_result.h"
#include "scip/type_timing.h"
#include "blockmemshell/memory.h"
Go to the source code of this file.
Macros | |
#define | SCIP_DECL_BANDITFREE(x) |
#define | SCIP_DECL_BANDITSELECT(x) |
#define | SCIP_DECL_BANDITUPDATE(x) |
#define | SCIP_DECL_BANDITRESET(x) |
#define SCIP_DECL_BANDITFREE | ( | x | ) |
callback to free bandit specific data structures
Definition at line 63 of file type_bandit.h.
Referenced by doBanditvtableCreate(), SCIPbanditvtableCreate(), and SCIPincludeBanditvtable().
#define SCIP_DECL_BANDITSELECT | ( | x | ) |
selection callback for bandit selector
Definition at line 69 of file type_bandit.h.
#define SCIP_DECL_BANDITUPDATE | ( | x | ) |
update callback for bandit algorithms
Definition at line 75 of file type_bandit.h.
#define SCIP_DECL_BANDITRESET | ( | x | ) |
reset callback for bandit algorithms
Definition at line 82 of file type_bandit.h.
Referenced by doBanditvtableCreate(), SCIPbanditvtableCreate(), and SCIPincludeBanditvtable().
typedef struct SCIP_Bandit SCIP_BANDIT |
data structure for bandit algorithms
Definition at line 50 of file type_bandit.h.
typedef struct SCIP_BanditVTable SCIP_BANDITVTABLE |
virtual function table for bandit callbacks
Definition at line 53 of file type_bandit.h.
typedef struct SCIP_BanditData SCIP_BANDITDATA |
data structure for specific bandit algorithm implementation
Definition at line 56 of file type_bandit.h.