예제 #1
0
 public function testSimpleModel()
 {
     if (!$this->doConsole()) {
         return;
     }
     $solver = new Solver(new Schedule(), \App::getInstance());
     $solver->setTimeSlots(4);
     $solver->setMaxTimeSlots(4);
     $solver->setUsers([1, 2, 3]);
     $solver->setMeetings([1, 2]);
     $solver->setMeetingsDuration([1 => 1, 3]);
     $solver->setMeetingsAvailability([1 => [1 => 1, 0, 0, 0], [1 => 1, 1, 1, 0]]);
     $solver->setUsersAvailability([1 => [1 => 1, 1, 0, 0], [1 => 1, 1, 1, 0], [1 => 1, 1, 1, 0]]);
     $solver->setUsersMeetings([1 => [1 => 1, 0], [1 => 1, 1], [1 => 1, 1]]);
     $solver->solve();
     $this->assertEquals([1 => [1 => 1, 0], [1 => 0, 1], [1 => 0, 1]], $solver->getXResults());
     $this->assertEquals([1 => [1 => 1, 0, 0, 0], [1 => 1, 0, 0, 0]], $solver->getYResults());
 }
예제 #2
0
 /**
  * @param Solver $solver
  * @return Solver
  * @throws OptimiseException
  */
 private function setUsers(Solver $solver)
 {
     //since we consider busy timeslots, we need to get all users
     $users = $this->company->employees->pluck('id')->toArray();
     if (count($users) == 0) {
         throw (new OptimiseException("No users for this company"))->withEmpty(true);
     }
     return $solver->setUsers($users);
 }