officekit
Version:
A toolkit to represent and visualize office spaces. It also provides functionality to simulate usage of offices, and calculate a score given a fitness function. It also have functionatlity for automatic allocation of offices using a genetic algorithm.
10 lines (9 loc) • 330 B
TypeScript
import type { OfficeBuilding } from '$lib/office/OfficeBuilding';
import type { People } from '$lib/people/People';
export declare class Simulator {
building: OfficeBuilding;
people: People;
noIterations: number;
constructor(building: OfficeBuilding, people: People, noIterations?: number);
execute(): void;
}