master > master: code py - fügte tarjan api hinzu

This commit is contained in:
RD
2022-06-10 16:04:30 +02:00
parent 6920944cdf
commit a83315e3e6
4 changed files with 59 additions and 4 deletions

View File

@@ -37,10 +37,33 @@ components:
type: object
required:
- name
- nodes
- edges
properties:
<<: *ref_command_properties
# required:
# properties:
nodes:
anyOf:
- type: array
items:
type: string
- type: array
items:
type: integer
- type: array
items:
type: number
edges:
type: array
items:
# $ref: '#/components/schemas/Edge'
type: array
minItems: 2
maxItems: 2
items:
anyOf:
- type: integer
- type: number
- type: string
# ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
# Command - Algorithm: TSP
# ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~