Exemplo n.º 1
0
        public async Task <Responce> PostGraphAsync([FromBody] InputGraph input)
        {
            var converted = await GraphHelpers.GraphToMatrixAsync(input);

            return(await PostAsync(converted));
        }
Exemplo n.º 2
0
        public async Task <Responce> GlrTestGraphAsync([FromBody] InputGraph input, int maxSubNodesCount = 3, int maxTreeDepth = 5)
        {
            var converted = await GraphHelpers.GraphToMatrixAsync(input);

            return(await GlrTestAsync(converted, maxSubNodesCount, maxTreeDepth));
        }