Skip to content
Snippets Groups Projects
Commit 21ccdde2 authored by Paul Nitzke's avatar Paul Nitzke
Browse files

Additional documentation

parent 6d7e4215
Branches
No related tags found
1 merge request!19Various fixes and improvements to the CLI
......@@ -2,7 +2,10 @@ using System;
using CommandLine;
namespace CLIOptions;
[Verb("Partition", HelpText = "Partitions MatrixMarket String")]
/// <summary>
/// CLI options for the `partition` command.
/// </summary>
[Verb("partition", HelpText = "Partitions MatrixMarket String")]
public class PartitionOptions
{
[Option("input", Required = true, HelpText = "Path to the file containing the MatrixMarket string to read.")]
......
using System;
/// <summary>
/// Permitted values for Format CLI option. Checked in Program.
/// </summary>
public static class Formats
{
public static readonly String ColoredDot = "dot";
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment