├── .gitignore ├── LICENSE ├── README.md ├── SConstruct ├── bayes └── 2000.bin ├── examples ├── SConscript ├── basic.cc └── threads.cc ├── gittins └── 5000.zip ├── papers └── 2016-aucb │ ├── SConscript │ ├── aucb │ └── aucb.cc └── src ├── SConscript ├── algs.cc ├── algs.h ├── arm.h ├── bandit.cc ├── bandit.h ├── bernoulli_bandit.h ├── data.h ├── gaussian_bandit.h ├── gittins_table.h ├── log.h ├── makebayes.cc ├── makegittins.cc ├── parser.cc └── pool.h /.gitignore: -------------------------------------------------------------------------------- 1 | *.o 2 | -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tor/libbandit/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tor/libbandit/HEAD/README.md -------------------------------------------------------------------------------- /SConstruct: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tor/libbandit/HEAD/SConstruct -------------------------------------------------------------------------------- /bayes/2000.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tor/libbandit/HEAD/bayes/2000.bin -------------------------------------------------------------------------------- /examples/SConscript: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tor/libbandit/HEAD/examples/SConscript -------------------------------------------------------------------------------- /examples/basic.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tor/libbandit/HEAD/examples/basic.cc -------------------------------------------------------------------------------- /examples/threads.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tor/libbandit/HEAD/examples/threads.cc -------------------------------------------------------------------------------- /gittins/5000.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tor/libbandit/HEAD/gittins/5000.zip -------------------------------------------------------------------------------- /papers/2016-aucb/SConscript: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tor/libbandit/HEAD/papers/2016-aucb/SConscript -------------------------------------------------------------------------------- /papers/2016-aucb/aucb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tor/libbandit/HEAD/papers/2016-aucb/aucb -------------------------------------------------------------------------------- /papers/2016-aucb/aucb.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tor/libbandit/HEAD/papers/2016-aucb/aucb.cc -------------------------------------------------------------------------------- /src/SConscript: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tor/libbandit/HEAD/src/SConscript -------------------------------------------------------------------------------- /src/algs.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tor/libbandit/HEAD/src/algs.cc -------------------------------------------------------------------------------- /src/algs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tor/libbandit/HEAD/src/algs.h -------------------------------------------------------------------------------- /src/arm.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tor/libbandit/HEAD/src/arm.h -------------------------------------------------------------------------------- /src/bandit.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tor/libbandit/HEAD/src/bandit.cc -------------------------------------------------------------------------------- /src/bandit.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tor/libbandit/HEAD/src/bandit.h -------------------------------------------------------------------------------- /src/bernoulli_bandit.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tor/libbandit/HEAD/src/bernoulli_bandit.h -------------------------------------------------------------------------------- /src/data.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tor/libbandit/HEAD/src/data.h -------------------------------------------------------------------------------- /src/gaussian_bandit.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tor/libbandit/HEAD/src/gaussian_bandit.h -------------------------------------------------------------------------------- /src/gittins_table.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tor/libbandit/HEAD/src/gittins_table.h -------------------------------------------------------------------------------- /src/log.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tor/libbandit/HEAD/src/log.h -------------------------------------------------------------------------------- /src/makebayes.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tor/libbandit/HEAD/src/makebayes.cc -------------------------------------------------------------------------------- /src/makegittins.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tor/libbandit/HEAD/src/makegittins.cc -------------------------------------------------------------------------------- /src/parser.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tor/libbandit/HEAD/src/parser.cc -------------------------------------------------------------------------------- /src/pool.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tor/libbandit/HEAD/src/pool.h --------------------------------------------------------------------------------