From 73bad08457c3fdc9b4cfe6b3a3603a77f1b0a0ec Mon Sep 17 00:00:00 2001 From: Tim Edwards Date: Wed, 17 Nov 2021 09:12:47 -0500 Subject: [PATCH] Updated the version to go along with the merge of pull request the existing coding style. --- VERSION | 2 +- lef/defWrite.c | 30 ++++++++++++++++-------------- 2 files changed, 17 insertions(+), 15 deletions(-) diff --git a/VERSION b/VERSION index 03112302..37ebd37d 100644 --- a/VERSION +++ b/VERSION @@ -1 +1 @@ -8.3.228 +8.3.229 diff --git a/lef/defWrite.c b/lef/defWrite.c index be89f796..240bd6ce 100644 --- a/lef/defWrite.c +++ b/lef/defWrite.c @@ -964,12 +964,12 @@ defNetGeometryFunc(tile, plane, defdata) x2 = r.r_xtop * oscale; if (routeWidth == 0) routeWidth = h; - extlen = 0; - if(defdata->specialmode == DO_REGULAR) - { - x1 = x1 + (routeWidth/2*oscale); - x2 = x2 - (routeWidth/2*oscale); - } + extlen = 0; + if (defdata->specialmode == DO_REGULAR) + { + x1 = x1 + (routeWidth / 2 * oscale); + x2 = x2 - (routeWidth / 2 * oscale); + } } else /* vertical orientation */ { @@ -980,12 +980,12 @@ defNetGeometryFunc(tile, plane, defdata) y2 = r.r_ytop * oscale; if (routeWidth == 0) routeWidth = w; - extlen = 0; - if(defdata->specialmode == DO_REGULAR) - { - y1 = y1 + (routeWidth/2*oscale); - y2 = y2 - (routeWidth/2*oscale); - } + extlen = 0; + if (defdata->specialmode == DO_REGULAR) + { + y1 = y1 + (routeWidth / 2 * oscale); + y2 = y2 - (routeWidth / 2 * oscale); + } } } else /* Type is a via */ @@ -1993,8 +1993,10 @@ defComponentFunc(cellUse, defdata) fprintf(f, " - %s %s\n + PLACED ( %.10g %.10g ) %s ;\n", 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_ybot - cellUse->cu_def->cd_bbox.r_ll.p_y) * oscale, + (float)(cellUse->cu_bbox.r_xbot - cellUse->cu_def->cd_bbox.r_ll.p_x) + * oscale, + (float)(cellUse->cu_bbox.r_ybot - cellUse->cu_def->cd_bbox.r_ll.p_y) + * oscale, defTransPos(&cellUse->cu_transform)); return 0; /* Keep the search going */