algorithms.py 567 B

1234567891011121314151617181920
  1. from fastapi import APIRouter, Query
  2. from app.controllers.algorithms.graph_coloring import get_graph_coloring
  3. from app.models.domain.algorithms import GraphColoringRequest, GraphColoringResponse
  4. router = APIRouter()
  5. @router.post('/graph-coloring', response_model=GraphColoringResponse)
  6. async def get_graph_coloring_result(graph_info: GraphColoringRequest):
  7. black, white, random = await get_graph_coloring(
  8. graph_info.vertexes,
  9. graph_info.edges
  10. )
  11. return {
  12. 'black': black,
  13. 'white': white,
  14. 'random': random
  15. }