Public API

Here, all exported types and methods are listed, which the user needs when using the package.

Types

RoomJuggler.GuestType
Guest(name::String, gender::Symbol)

A guest with a name and a gender.

Fields

  • name::String: name of the guest
  • gender::Symbol: gender of the guest, currently only supports :M or :F
source
RoomJuggler.WishType
Wish(mail::String, guest_ids::Vector{Int}, gender::Symbol)

A wish of multiple guests that want to share the same room.

Fields

  • mail::String: e-mail the wish was sent with
  • guest_ids::Vector{Int}: guest indices of the guest in this wish
  • gender::Symbol: gender of the guests in the wish, currently only supports :M or :F
source
RoomJuggler.RoomType
Room(name::String, capacity::Int, gender::Symbol)

A room containing multiple guests.

Fields

  • name::String: name of the room
  • capacity::Int: number of guests the room can contain
  • gender::Symbol: gender of the guests in the room, currently only supports :M or :F
source
RoomJuggler.RoomJugglerJobType
RoomJugglerJob(excel_file::String)

A RoomJugglerJob containing the guests, rooms and wishes - a problem that needs juggling!

Arguments

  • excel_file::String: Excel file with extension .xlsx, containing the guests, rooms and wishes

Fields

  • n_guests::Int: number of guests
  • n_wishes::Int: number of wishes
  • n_rooms::Int: number of rooms
  • n_beds::Int: number of all beds in the room, the sum of all room capacities
  • ropf::RoomOccupancyProblem: room occupancy problem of the female guests
  • ropm::RoomOccupancyProblem: room occupancy problem of the male guests
source
RoomJuggler.JuggleConfigType
JuggleConfig(; [n_iter, beta, t_0, t_min])

Configuration of the underlying simulated annealing optimization.

Arguments

  • n_iter::Int=300: number of iterations per temperature (default=300)
  • beta::Real=0.999: temperature decrease factor (default=0.999, condition: 0 < β < 1)
  • t_0::Real=1.0: starting temperature (default=1.0)
  • t_min::Real=1e-7: minimum temperature (default=1e-7)

Fields

  • n_iter::Int: number of iterations per temperature
  • n_total_iter::Int: number of total iterations (n_iter * length(t_history))
  • beta::Float64: temperature decrease factor
  • t_0::Float64: starting temperature
  • t_min::Float64: minimum temperature
  • t_history::Vector{Float64}: temperature steps
source

Functions

RoomJuggler.juggle!Function
juggle!(rjj::RoomJugglerJob; config=JuggleConfig())

Function to start juggling of the guests in the RoomJugglerJob.

Arguments

  • rjj::RoomJugglerJob: RoomJugglerJob that gets juggled
  • config: two possible options:
    • config::JuggleConfig: same configuration for the female and male problem
    • config::Tuple{JuggleConfig, JuggleConfig}: two configurations, the first is for the female problem, the second is for the male problem
source
RoomJuggler.reportFunction
report(excel_file::String, rjj::RoomJugglerJob)

Export a report about the RoomJugglerJob as an Excel-file.

Arguments

  • excel_file::String: path & name of the exported Excel-file with extension .xlsx
  • rjj::RoomJugglerJob: RoomJugglerJob the report is about
source