notesum.ai
Published at November 27Abductive Symbolic Solver on Abstraction and Reasoning Corpus
cs.AI
Released Date: November 27, 2024
Authors: Mintaek Lim, Seokki Lee, Liyew Woletemaryam Abitew, Sundong Kim

| Data type | Description |
| Pnode | Represent a single pixel in the grid. Stores grid coordinates. |
| Onode | Represent objects in the grid formed by a collection of Pnode |
| Gnode | Represent the entire grid holding Pnode and Onode as one node. |
| Vnode | Represent a pair of input and output into one node that holds two Gnodes. |
| Xnode | Represent any type of node above. |
| Edge | Represent relationship between Pnode, Onode, Gnode, and Vnode (provides connection in the graph). |
| Color | Represent a color of pixel by integer value. |
| NodeList | Represent a list of nodes. |
| EdgeList | Represent a list of edges. |
| Coordinate | Is used to represent coordinates which is a tuple of two integer values. |
| ColorSet | Is used to hold collections of color. |