Warning: session_start(): open(/var/lib/php/sessions/sess_psmt4bpjd2mk6kgb1v9hipjrui, O_RDWR) failed: No space left on device (28) in /var/www/tb-usercake/models/config.php on line 51
Warning: session_start(): Failed to read session data: files (path: /var/lib/php/sessions) in /var/www/tb-usercake/models/config.php on line 51
static IBinaryImage iBinaryImageFromFunction(IIntIntPred f, int w, int h) {
ret new IBinaryImage {
public int getWidth() { ret w; }
public int getHeight() { ret h; }
public bool getBoolPixel(int x, int y) {
ret f.get(x, y);
}
};
}
static IBinaryImage iBinaryImageFromFunction(int w, int h, IIntIntPred f) {
ret iBinaryImageFromFunction(f, w, h);
}