rectangle-packing-solver
                                
                                 rectangle-packing-solver copied to clipboard
                                
                                    rectangle-packing-solver copied to clipboard
                            
                            
                            
                        Same Value Of 2 Rectangle = No Results
Im getting nothing from the same rectangles = (4, 4), (4, 4)
But its working if im using = (4, 3), (4, 4)
import rectangle_packing_solver as rps
# Define a problem
problem = rps.Problem(rectangles=[
    (4, 3),
    (4, 4),
])
print("\n=== Solving without width/height constraints ===")
solution = rps.Solver().solve(problem=problem, show_progress=True)
print("solution:", solution)
I found out that if using the same W/L of rectangle, need to set the solve(width_limit=VALUE, height_limit=VALUE)
@catherinezera88 I'll also look into this issue. Thank you for finding it!