Skip to content
GitLab
Menu
Projects
Groups
Snippets
Help
Projects
Groups
Snippets
Loading...
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Sign in / Register
Toggle navigation
Menu
Open sidebar
ITMO-NSS-team
GEFEST
Commits
797cbdd2
Commit
797cbdd2
authored
2 years ago
by
Rosneft rosneft
Browse files
Options
Download
Email Patches
Plain Diff
Bug fixes
parent
5e272b0c
minor_changes
No related merge requests found
Changes
5
Hide whitespace changes
Inline
Side-by-side
Showing
5 changed files
gefest/core/opt/constraints.py
+3
-5
gefest/core/opt/constraints.py
gefest/core/structure/structure.py
+3
-3
gefest/core/structure/structure.py
test/test_constraints.py
+45
-0
test/test_constraints.py
test/test_structure.py
+22
-0
test/test_structure.py
test/test_validation.py
+2
-5
test/test_validation.py
with
75 additions
and
13 deletions
+75
-13
gefest/core/opt/constraints.py
View file @
797cbdd2
...
...
@@ -22,12 +22,10 @@ def check_constraints(structure: Structure, is_lightweight: bool = False, domain
unclosed_poly
(
structure
,
domain
)]
structurally_correct
=
not
any
(
cts
)
if
not
structurally_correct
:
return
structure
return
structurally_correct
except
Exception
as
ex
:
print
(
ex
)
import
traceback
print
(
traceback
.
format_exc
())
return
False
return
structure
return
False
\ No newline at end of file
This diff is collapsed.
Click to expand it.
gefest/core/structure/structure.py
View file @
797cbdd2
...
...
@@ -48,9 +48,9 @@ class Structure:
def
__str__
(
self
):
out_str
=
''
for
i
,
pol
in
enumerate
(
self
.
polygons
):
out_str
+=
f
'
\
r\n
Polygon
{
i
}
, size
{
len
(
pol
.
points
)
}
:
\r
\n
'
for
j
,
pt
in
enumerate
(
pol
.
points
):
out_str
+=
f
'Point
{
j
}
: x=
{
round
(
pt
.
x
,
2
)
}
, y=
{
round
(
pt
.
y
,
2
)
}
; '
out_str
+=
f
'
\
n
Polygon
{
i
}
, size
{
len
(
pol
.
points
)
}
:
\n
'
out_str
+=
''
.
join
(
[
f
'Point
{
j
}
: x=
{
round
(
pt
.
x
,
2
)
}
, y=
{
round
(
pt
.
y
,
2
)
}
; '
for
j
,
pt
in
enumerate
(
pol
.
points
)])
return
out_str
def
__repr__
(
self
):
...
...
This diff is collapsed.
Click to expand it.
test/test_constraints.py
0 → 100644
View file @
797cbdd2
import
pytest
from
gefest.core.opt.constraints
import
check_constraints
from
gefest.core.structure.domain
import
Domain
from
gefest.core.structure.point
import
Point
from
gefest.core.structure.polygon
import
Polygon
from
gefest.core.structure.structure
import
Structure
@
pytest
.
fixture
def
domain
():
# Create a valid domain for testing
return
Domain
(
name
=
'main'
,
allowed_area
=
[(
0
,
0
),
(
0
,
10
),
(
10
,
10
),
(
10
,
0
)],
is_closed
=
False
)
@
pytest
.
fixture
def
structure
():
# Create a valid structure for testing
return
Structure
(
polygons
=
[
Polygon
(
points
=
[
Point
(
0
,
0
),
Point
(
1
,
0
),
Point
(
1
,
1
),
Point
(
0
,
1
)]),
Polygon
(
points
=
[
Point
(
2
,
2
),
Point
(
3
,
2
),
Point
(
3
,
3
),
Point
(
2
,
3
)])
])
def
test_valid_structure
(
structure
,
domain
):
# Create a valid structure for testing
structure
=
Structure
(
polygons
=
[
Polygon
(
points
=
[
Point
(
0
,
0
),
Point
(
1
,
0
),
Point
(
1
,
1
),
Point
(
0
,
1
)]),
Polygon
(
points
=
[
Point
(
2
,
2
),
Point
(
3
,
2
),
Point
(
3
,
3
),
Point
(
2
,
3
)])
])
# Check constraints on the structure
result
=
check_constraints
(
structure
,
domain
=
domain
)
# Assert that the result is True (i.e. the structure is valid)
assert
result
is
True
def
test_invalid_structure
(
structure
,
domain
):
# Create an invalid structure for testing
structure
.
polygons
.
append
(
Polygon
(
points
=
[
Point
(
2
,
15
),
Point
(
3
,
2
),
Point
(
3
,
3
),
Point
(
2
,
3
)]))
# Check constraints on the structure
result
=
check_constraints
(
structure
,
domain
=
domain
)
# Assert that the result is False (i.e. the structure is invalid)
assert
result
is
False
This diff is collapsed.
Click to expand it.
test/test_structure.py
0 → 100644
View file @
797cbdd2
from
gefest.core.structure.point
import
Point
from
gefest.core.structure.polygon
import
Polygon
from
gefest.core.structure.structure
import
Structure
def
test_structure_to_string
():
# Create a structure for testing
structure
=
Structure
(
polygons
=
[
Polygon
(
points
=
[
Point
(
0
,
0
),
Point
(
1
,
0
),
Point
(
1
,
1
),
Point
(
0
,
1
)]),
Polygon
(
points
=
[
Point
(
2
,
2
),
Point
(
3
,
2
),
Point
(
3
,
3
),
Point
(
2
,
3
)])
])
# Check the string representation of the structure
result
=
str
(
structure
)
# Define the expected output
expected
=
'
\n
Polygon 0, size 4:
\n
Point 0: x=0, y=0; Point 1: x=1, '
\
'y=0; Point 2: x=1, y=1; Point 3: x=0, y=1;
\n
Polygon 1, '
\
'size 4:
\n
Point 0: x=2, y=2; Point 1: x=3, y=2; Point 2: x=3, y=3; Point 3: x=2, y=3; '
# Assert that the result matches the expected output
assert
result
==
expected
This diff is collapsed.
Click to expand it.
test/test_validation.py
View file @
797cbdd2
import
pytest
from
gefest.core.geometry.geometry
import
Geometry
from
gefest.core.algs.geom.validation
import
*
from
gefest.core.geometry.geometry_2d
import
Geometry2D
from
gefest.core.structure.point
import
Point
from
gefest.core.structure.polygon
import
Polygon
from
gefest.core.structure.structure
import
Structure
from
gefest.core.algs.geom.validation
import
*
geometry
=
Geometry2D
()
domain
=
Domain
()
...
...
@@ -23,7 +20,7 @@ rectangle_poly = Polygon('rectangle', points=[Point(*coords) for coords in recta
triangle_points
=
[(
0
,
0
),
(
poly_width
,
poly_length
),
(
0
,
poly_length
)]
triangle_poly
=
Polygon
(
'triangle'
,
points
=
[
Point
(
*
coords
)
for
coords
in
triangle_points
])
out_points
=
[
Point
(
x
+
200
,
y
+
200
)
for
(
x
,
y
)
in
rectangle_points
]
out_points
=
[
Point
(
x
+
200
,
y
+
200
)
for
(
x
,
y
)
in
rectangle_points
]
out_poly
=
Polygon
(
'out_rectangle'
,
points
=
out_points
)
...
...
This diff is collapsed.
Click to expand it.
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
.
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment
Menu
Projects
Groups
Snippets
Help