Home
last modified time | relevance | path

Searched refs:expandOneJ (Results 1 – 2 of 2) sorted by relevance

/dports/cad/fritzing/fritzing-app-0.9.2b/src/autoroute/mazerouter/
H A Dmazerouter.h243 …void expandOneJ(GridPoint & gridPoint, std::priority_queue<GridPoint> & pq, int dx, int dy, int dz…
H A Dmazerouter.cpp2915 if (gp.x > 0) expandOneJ(gp, pq, -1, 0, 0, targetValue, targetLocation, already); in lookForJumper()
2916 if (gp.x < m_grid->x - 1) expandOneJ(gp, pq, 1, 0, 0, targetValue, targetLocation, already); in lookForJumper()
2917 if (gp.y > 0) expandOneJ(gp, pq, 0, -1, 0, targetValue, targetLocation, already); in lookForJumper()
2918 if (gp.y < m_grid->y - 1) expandOneJ(gp, pq, 0, 1, 0, targetValue, targetLocation, already); in lookForJumper()
2920 if (gp.z > 0) expandOneJ(gp, pq, 0, 0, -1, targetValue, targetLocation, already); in lookForJumper()
2921 … if (gp.z < m_grid->z - 1) expandOneJ(gp, pq, 0, 0, 1, targetValue, targetLocation, already); in lookForJumper()
2930 void MazeRouter::expandOneJ(GridPoint & gridPoint, std::priority_queue<GridPoint> & pq, int dx, int… in expandOneJ() function in MazeRouter