Updated the version to go along with the merge of pull request

the existing coding style.
This commit is contained in:
Tim Edwards 2021-11-17 09:12:47 -05:00
parent 7083d1904c
commit 73bad08457
2 changed files with 17 additions and 15 deletions

View File

@ -1 +1 @@
8.3.228 8.3.229

View File

@ -964,12 +964,12 @@ defNetGeometryFunc(tile, plane, defdata)
x2 = r.r_xtop * oscale; x2 = r.r_xtop * oscale;
if (routeWidth == 0) routeWidth = h; if (routeWidth == 0) routeWidth = h;
extlen = 0; extlen = 0;
if(defdata->specialmode == DO_REGULAR) if (defdata->specialmode == DO_REGULAR)
{ {
x1 = x1 + (routeWidth/2*oscale); x1 = x1 + (routeWidth / 2 * oscale);
x2 = x2 - (routeWidth/2*oscale); x2 = x2 - (routeWidth / 2 * oscale);
} }
} }
else /* vertical orientation */ else /* vertical orientation */
{ {
@ -980,12 +980,12 @@ defNetGeometryFunc(tile, plane, defdata)
y2 = r.r_ytop * oscale; y2 = r.r_ytop * oscale;
if (routeWidth == 0) routeWidth = w; if (routeWidth == 0) routeWidth = w;
extlen = 0; extlen = 0;
if(defdata->specialmode == DO_REGULAR) if (defdata->specialmode == DO_REGULAR)
{ {
y1 = y1 + (routeWidth/2*oscale); y1 = y1 + (routeWidth / 2 * oscale);
y2 = y2 - (routeWidth/2*oscale); y2 = y2 - (routeWidth / 2 * oscale);
} }
} }
} }
else /* Type is a via */ else /* Type is a via */
@ -1993,8 +1993,10 @@ defComponentFunc(cellUse, defdata)
fprintf(f, " - %s %s\n + PLACED ( %.10g %.10g ) %s ;\n", fprintf(f, " - %s %s\n + PLACED ( %.10g %.10g ) %s ;\n",
cellUse->cu_id, nameroot, cellUse->cu_id, nameroot,
(float)(cellUse->cu_bbox.r_xbot - cellUse->cu_def->cd_bbox.r_ll.p_x) * oscale, (float)(cellUse->cu_bbox.r_xbot - cellUse->cu_def->cd_bbox.r_ll.p_x)
(float)(cellUse->cu_bbox.r_ybot - cellUse->cu_def->cd_bbox.r_ll.p_y) * oscale, * oscale,
(float)(cellUse->cu_bbox.r_ybot - cellUse->cu_def->cd_bbox.r_ll.p_y)
* oscale,
defTransPos(&cellUse->cu_transform)); defTransPos(&cellUse->cu_transform));
return 0; /* Keep the search going */ return 0; /* Keep the search going */