data
stringlengths
39
72
fol
stringlengths
43
89
The house had a black window and a green door.
∃x ∃y ∃z (Window(x) ∧ Black(x) ∧ Door(y) ∧ Green(y)∧ House(z) ∧ had(z,x) ∧ had(z,y))
The window that was black was next to the door that was green.
∃x ∃y (Window(x) ∧ Black(x) ∧ Door(y) ∧ Green(y) ∧ next-to(x,y))
Black was the color of the window next to the green door.
∃x ∃y (Window(x) ∧ Black(x) ∧ Door(y) ∧ Green(y))
The window that was next to the green door was black.
∃x ∃y (Window(x) ∧ Black(x) ∧ Door(y) ∧ Green(y) ∧ next-to(x,y))
The house had a white window and a blue door.
∃x ∃y ∃z (Window(x) ∧ White(x) ∧ Door(y) ∧ Blue(y)∧ House(z) ∧ had(z,x) ∧ had(z,y))
The window that was white was next to the door that was blue.
∃x ∃y (Window(x) ∧ White(x) ∧ Door(y) ∧ Blue(y) ∧ next-to(x,y))
White was the color of the window next to the blue door.
∃x ∃y (Window(x) ∧ White(x) ∧ Door(y) ∧ Blue(y))
The window that was next to the blue door was white.
∃x ∃y (Window(x) ∧ White(x) ∧ Door(y) ∧ Blue(y) ∧ next-to(x,y))
The house had a blue window and a white door.
∃x ∃y ∃z (Window(x) ∧ Blue(x) ∧ Door(y) ∧ White(y)∧ House(z) ∧ had(z,x) ∧ had(z,y))
The window that was blue was next to the door that was white.
∃x ∃y (Window(x) ∧ Blue(x) ∧ Door(y) ∧ White(y) ∧ next-to(x,y))
Blue was the color of the window next to the white door.
∃x ∃y (Window(x) ∧ Blue(x) ∧ Door(y) ∧ White(y))
The window that was next to the white door was blue.
∃x ∃y (Window(x) ∧ Blue(x) ∧ Door(y) ∧ White(y) ∧ next-to(x,y))
The house had a yellow window and a white door.
∃x ∃y ∃z (Window(x) ∧ Yellow(x) ∧ Door(y) ∧ White(y)∧ House(z) ∧ had(z,x) ∧ had(z,y))
The window that was yellow was next to the door that was white.
∃x ∃y (Window(x) ∧ Yellow(x) ∧ Door(y) ∧ White(y) ∧ next-to(x,y))
Yellow was the color of the window next to the white door.
∃x ∃y (Window(x) ∧ Yellow(x) ∧ Door(y) ∧ White(y))
The window that was next to the white door was yellow.
∃x ∃y (Window(x) ∧ Yellow(x) ∧ Door(y) ∧ White(y) ∧ next-to(x,y))
The house had a black window and a yellow door.
∃x ∃y ∃z (Window(x) ∧ Black(x) ∧ Door(y) ∧ Yellow(y)∧ House(z) ∧ had(z,x) ∧ had(z,y))
The window that was black was next to the door that was yellow.
∃x ∃y (Window(x) ∧ Black(x) ∧ Door(y) ∧ Yellow(y) ∧ next-to(x,y))
Black was the color of the window next to the yellow door.
∃x ∃y (Window(x) ∧ Black(x) ∧ Door(y) ∧ Yellow(y))
The window that was next to the yellow door was black.
∃x ∃y (Window(x) ∧ Black(x) ∧ Door(y) ∧ Yellow(y) ∧ next-to(x,y))
The house had a yellow window and a black door.
∃x ∃y ∃z (Window(x) ∧ Yellow(x) ∧ Door(y) ∧ Black(y)∧ House(z) ∧ had(z,x) ∧ had(z,y))
The window that was yellow was next to the door that was black.
∃x ∃y (Window(x) ∧ Yellow(x) ∧ Door(y) ∧ Black(y) ∧ next-to(x,y))
Yellow was the color of the window next to the black door.
∃x ∃y (Window(x) ∧ Yellow(x) ∧ Door(y) ∧ Black(y))
The window that was next to the black door was yellow.
∃x ∃y (Window(x) ∧ Yellow(x) ∧ Door(y) ∧ Black(y) ∧ next-to(x,y))
The house had a black window and a red door.
∃x ∃y ∃z (Window(x) ∧ Black(x) ∧ Door(y) ∧ Red(y)∧ House(z) ∧ had(z,x) ∧ had(z,y))
The window that was black was next to the door that was red.
∃x ∃y (Window(x) ∧ Black(x) ∧ Door(y) ∧ Red(y) ∧ next-to(x,y))
Black was the color of the window next to the red door.
∃x ∃y (Window(x) ∧ Black(x) ∧ Door(y) ∧ Red(y))
The window that was next to the red door was black.
∃x ∃y (Window(x) ∧ Black(x) ∧ Door(y) ∧ Red(y) ∧ next-to(x,y))
The house had a red window and a black door.
∃x ∃y ∃z (Window(x) ∧ Red(x) ∧ Door(y) ∧ Black(y)∧ House(z) ∧ had(z,x) ∧ had(z,y))
The window that was red was next to the door that was black.
∃x ∃y (Window(x) ∧ Red(x) ∧ Door(y) ∧ Black(y) ∧ next-to(x,y))
Red was the color of the window next to the black door.
∃x ∃y (Window(x) ∧ Red(x) ∧ Door(y) ∧ Black(y))
The window that was next to the black door was red.
∃x ∃y (Window(x) ∧ Red(x) ∧ Door(y) ∧ Black(y) ∧ next-to(x,y))
The house had a black window and a blue door.
∃x ∃y ∃z (Window(x) ∧ Black(x) ∧ Door(y) ∧ Blue(y)∧ House(z) ∧ had(z,x) ∧ had(z,y))
The window that was black was next to the door that was blue.
∃x ∃y (Window(x) ∧ Black(x) ∧ Door(y) ∧ Blue(y) ∧ next-to(x,y))
Black was the color of the window next to the blue door.
∃x ∃y (Window(x) ∧ Black(x) ∧ Door(y) ∧ Blue(y))
The window that was next to the blue door was black.
∃x ∃y (Window(x) ∧ Black(x) ∧ Door(y) ∧ Blue(y) ∧ next-to(x,y))
The house had a blue window and a black door.
∃x ∃y ∃z (Window(x) ∧ Blue(x) ∧ Door(y) ∧ Black(y)∧ House(z) ∧ had(z,x) ∧ had(z,y))
The window that was blue was next to the door that was black.
∃x ∃y (Window(x) ∧ Blue(x) ∧ Door(y) ∧ Black(y) ∧ next-to(x,y))
Blue was the color of the window next to the black door.
∃x ∃y (Window(x) ∧ Blue(x) ∧ Door(y) ∧ Black(y))
The window that was next to the black door was blue.
∃x ∃y (Window(x) ∧ Blue(x) ∧ Door(y) ∧ Black(y) ∧ next-to(x,y))
A blue glass was placed on a red table.
∃x ∃y (Glass(x) ∧ Blue(x) ∧ Table(y) ∧ Red(y) ∧ placed-on(x,y))
The glass that was blue was placed on a table that was red.
∃x ∃y (Glass(x) ∧ Blue(x) ∧ Table(y) ∧ Red(y) ∧ placed-on(x,y))
Red was not the color of the glass but of the table.
∃x ∃y (Glass(x) ∧ ¬Red(x) ∧ Table(y) ∧ Red(y))
Blue was the color of the glass placed on the red table.
∃x ∃y (Glass(x) ∧ Blue(x) ∧ Table(y) ∧ Red(y) ∧ placed-on(x,y))
The glass that was placed on a red table was blue.
∃x ∃y (Glass(x) ∧ Blue(x) ∧ Table(y) ∧ Red(y) ∧ placed-on(x,y))
A green glass was placed on a red table.
∃x ∃y (Glass(x) ∧ Green(x) ∧ Table(y) ∧ Red(y) ∧ placed-on(x,y))
The glass that was green was placed on a table that was red.
∃x ∃y (Glass(x) ∧ Green(x) ∧ Table(y) ∧ Red(y) ∧ placed-on(x,y))
Green was the color of the glass placed on the red table.
∃x ∃y (Glass(x) ∧ Green(x) ∧ Table(y) ∧ Red(y) ∧ placed-on(x,y))
The glass that was placed on a red table was green.
∃x ∃y (Glass(x) ∧ Green(x) ∧ Table(y) ∧ Red(y) ∧ placed-on(x,y))
A blue glass was placed on a green table.
∃x ∃y (Glass(x) ∧ Blue(x) ∧ Table(y) ∧ Green(y) ∧ placed-on(x,y))
The glass that was blue was placed on a table that was green.
∃x ∃y (Glass(x) ∧ Blue(x) ∧ Table(y) ∧ Green(y) ∧ placed-on(x,y))
Green was not the color of the glass but of the table.
∃x ∃y (Glass(x) ∧ ¬Green(x) ∧ Table(y) ∧ Green(y))
Blue was the color of the glass placed on the green table.
∃x ∃y (Glass(x) ∧ Blue(x) ∧ Table(y) ∧ Green(y) ∧ placed-on(x,y))
The glass that was placed on a green table was blue.
∃x ∃y (Glass(x) ∧ Blue(x) ∧ Table(y) ∧ Green(y) ∧ placed-on(x,y))
A yellow glass was placed on a red table.
∃x ∃y (Glass(x) ∧ Yellow(x) ∧ Table(y) ∧ Red(y) ∧ placed-on(x,y))
The glass that was yellow was placed on a table that was red.
∃x ∃y (Glass(x) ∧ Yellow(x) ∧ Table(y) ∧ Red(y) ∧ placed-on(x,y))
Yellow was the color of the glass placed on the red table.
∃x ∃y (Glass(x) ∧ Yellow(x) ∧ Table(y) ∧ Red(y) ∧ placed-on(x,y))
The glass that was placed on a red table was yellow.
∃x ∃y (Glass(x) ∧ Yellow(x) ∧ Table(y) ∧ Red(y) ∧ placed-on(x,y))
A blue glass was placed on a yellow table.
∃x ∃y (Glass(x) ∧ Blue(x) ∧ Table(y) ∧ Yellow(y) ∧ placed-on(x,y))
The glass that was blue was placed on a table that was yellow.
∃x ∃y (Glass(x) ∧ Blue(x) ∧ Table(y) ∧ Yellow(y) ∧ placed-on(x,y))
Yellow was not the color of the glass but of the table.
∃x ∃y (Glass(x) ∧ ¬Yellow(x) ∧ Table(y) ∧ Yellow(y))
Blue was the color of the glass placed on the yellow table.
∃x ∃y (Glass(x) ∧ Blue(x) ∧ Table(y) ∧ Yellow(y) ∧ placed-on(x,y))
The glass that was placed on a yellow table was blue.
∃x ∃y (Glass(x) ∧ Blue(x) ∧ Table(y) ∧ Yellow(y) ∧ placed-on(x,y))
A green glass was placed on a yellow table.
∃x ∃y (Glass(x) ∧ Green(x) ∧ Table(y) ∧ Yellow(y) ∧ placed-on(x,y))
The glass that was green was placed on a table that was yellow.
∃x ∃y (Glass(x) ∧ Green(x) ∧ Table(y) ∧ Yellow(y) ∧ placed-on(x,y))
Green was the color of the glass placed on the yellow table.
∃x ∃y (Glass(x) ∧ Green(x) ∧ Table(y) ∧ Yellow(y) ∧ placed-on(x,y))
The glass that was placed on a yellow table was green.
∃x ∃y (Glass(x) ∧ Green(x) ∧ Table(y) ∧ Yellow(y) ∧ placed-on(x,y))
A yellow glass was placed on a green table.
∃x ∃y (Glass(x) ∧ Yellow(x) ∧ Table(y) ∧ Green(y) ∧ placed-on(x,y))
The glass that was yellow was placed on a table that was green.
∃x ∃y (Glass(x) ∧ Yellow(x) ∧ Table(y) ∧ Green(y) ∧ placed-on(x,y))
Yellow was the color of the glass placed on the green table.
∃x ∃y (Glass(x) ∧ Yellow(x) ∧ Table(y) ∧ Green(y) ∧ placed-on(x,y))
The glass that was placed on a green table was yellow.
∃x ∃y (Glass(x) ∧ Yellow(x) ∧ Table(y) ∧ Green(y) ∧ placed-on(x,y))
A green glass was placed on a blue table.
∃x ∃y (Glass(x) ∧ Green(x) ∧ Table(y) ∧ Blue(y) ∧ placed-on(x,y))
The glass that was green was placed on a table that was blue.
∃x ∃y (Glass(x) ∧ Green(x) ∧ Table(y) ∧ Blue(y) ∧ placed-on(x,y))
Blue was not the color of the glass but of the table.
∃x ∃y (Glass(x) ∧ ¬Blue(x) ∧ Table(y) ∧ Blue(y))
Green was the color of the glass placed on the blue table.
∃x ∃y (Glass(x) ∧ Green(x) ∧ Table(y) ∧ Blue(y) ∧ placed-on(x,y))
The glass that was placed on a blue table was green.
∃x ∃y (Glass(x) ∧ Green(x) ∧ Table(y) ∧ Blue(y) ∧ placed-on(x,y))
A white glass was placed on a yellow table.
∃x ∃y (Glass(x) ∧ White(x) ∧ Table(y) ∧ Yellow(y) ∧ placed-on(x,y))
The glass that was white was placed on a table that was yellow.
∃x ∃y (Glass(x) ∧ White(x) ∧ Table(y) ∧ Yellow(y) ∧ placed-on(x,y))
White was the color of the glass placed on the yellow table.
∃x ∃y (Glass(x) ∧ White(x) ∧ Table(y) ∧ Yellow(y) ∧ placed-on(x,y))
The glass that was placed on a yellow table was white.
∃x ∃y (Glass(x) ∧ White(x) ∧ Table(y) ∧ Yellow(y) ∧ placed-on(x,y))
A green glass was placed on a white table.
∃x ∃y (Glass(x) ∧ Green(x) ∧ Table(y) ∧ White(y) ∧ placed-on(x,y))
The glass that was green was placed on a table that was white.
∃x ∃y (Glass(x) ∧ Green(x) ∧ Table(y) ∧ White(y) ∧ placed-on(x,y))
White was not the color of the glass but of the table.
∃x ∃y (Glass(x) ∧ ¬White(x) ∧ Table(y) ∧ White(y))
Green was the color of the glass placed on the white table.
∃x ∃y (Glass(x) ∧ Green(x) ∧ Table(y) ∧ White(y) ∧ placed-on(x,y))
The glass that was placed on a white table was green.
∃x ∃y (Glass(x) ∧ Green(x) ∧ Table(y) ∧ White(y) ∧ placed-on(x,y))
A white glass was placed on a black table.
∃x ∃y (Glass(x) ∧ White(x) ∧ Table(y) ∧ Black(y) ∧ placed-on(x,y))
The glass that was white was placed on a table that was black.
∃x ∃y (Glass(x) ∧ White(x) ∧ Table(y) ∧ Black(y) ∧ placed-on(x,y))
Black was not the color of the glass but of the table.
∃x ∃y (Glass(x) ∧ ¬Black(x) ∧ Table(y) ∧ Black(y))
White was the color of the glass placed on the black table.
∃x ∃y (Glass(x) ∧ White(x) ∧ Table(y) ∧ Black(y) ∧ placed-on(x,y))
The glass that was placed on a black table was white.
∃x ∃y (Glass(x) ∧ White(x) ∧ Table(y) ∧ Black(y) ∧ placed-on(x,y))
A black glass was placed on a white table.
∃x ∃y (Glass(x) ∧ Black(x) ∧ Table(y) ∧ White(y) ∧ placed-on(x,y))
The glass that was black was placed on a table that was white.
∃x ∃y (Glass(x) ∧ Black(x) ∧ Table(y) ∧ White(y) ∧ placed-on(x,y))
Black was the color of the glass placed on the white table.
∃x ∃y (Glass(x) ∧ Black(x) ∧ Table(y) ∧ White(y) ∧ placed-on(x,y))
The glass that was placed on a white table was black.
∃x ∃y (Glass(x) ∧ Black(x) ∧ Table(y) ∧ White(y) ∧ placed-on(x,y))
A white glass was placed on a red table.
∃x ∃y (Glass(x) ∧ White(x) ∧ Table(y) ∧ Red(y) ∧ placed-on(x,y))
The glass that was white was placed on a table that was red.
∃x ∃y (Glass(x) ∧ White(x) ∧ Table(y) ∧ Red(y) ∧ placed-on(x,y))
White was the color of the glass placed on the red table.
∃x ∃y (Glass(x) ∧ White(x) ∧ Table(y) ∧ Red(y) ∧ placed-on(x,y))
The glass that was placed on a red table was white.
∃x ∃y (Glass(x) ∧ White(x) ∧ Table(y) ∧ Red(y) ∧ placed-on(x,y))
A red glass was placed on a white table.
∃x ∃y (Glass(x) ∧ Red(x) ∧ Table(y) ∧ White(y) ∧ placed-on(x,y))
The glass that was red was placed on a table that was white.
∃x ∃y (Glass(x) ∧ Red(x) ∧ Table(y) ∧ White(y) ∧ placed-on(x,y))