Skip to main content

No project description provided

Project description

Online Judge Verify Helper

Actions Status GitHub Pages PyPI LICENSE

README 日本語バージョン

What is this?

This is a tool to easily automate the verify process of your code library for competitive programming.

How to use

Set up the repository for the library

Please read this: https://kmyk.github.io/online-judge-verify-helper/installer.en.html

Running the program

Installation

$ pip3 install online-judge-verify-helper

Python 3.6 or above is required.

Automating the verification

First, add the problem URL to be used to verify the library in the file ending with .test.cpp as follows (#define PROBLEM "https://judge.yosupo.jp/problem/unionfind"). Then, run the following command to check if the verification can be performed.

$ oj-verify run

Currently, problems on Library Checker and Aizu Online Judge are supported. It is probable that problems on HackerRank can also be used, but it is not guaranteed at the moment.

Other judging platforms do not currently publish the test cases in usable forms, and so are not currently supported.

Autoexpansion of #includes

The include statements in your files in the form of #include "foo.hpp" can be expanded, similar to the functionality provided by webpack for JavaScript. This is to solve the problems that most online judges do not support submitting multiple files. The function can be used by running the following command:

$ oj-bundle main.cpp

If your competitive programming library resides outside the current directory, please specify the flag in the form of -I path/to/your/library. I recommend make shell aliases like alias oj-bundle='\oj-bundle -I path/to/your/library'.

Include guards like #pragma once are partially supported. If you have files that will be included multiple times but you only want them to appear once in the generated code, add #pragma once to the first line of the files.

Generating Documentation

Run the following command to generate documentation in .verify-helper/markdown/. Example: https://kmyk.github.io/online-judge-verify-helper/ GitHub Pages

$ oj-verify docs

If documentation generators like Doxygen are found when generating documentation, they will be automatically used. Available tags are shown below.

Tag name Description Remarks
@title Library file title If a title was not specified, the @brief element which appears first is used as a title. If there was no @brief elements, a filename is used as a title.
@category Category If a category was not specified, a directory name is used as a category.
@brief Description of library file If a title was not specified, the @brief element which appears first is not used as a description, but it is used as a title.
@see, @sa Create a hyperlink to an URL which is written right after this tag. We recommend to use this tag when you have some reference web pages. Usage: @see https://example.com/
@docs When a description of your library is too long to handle by using @brief tags, you can add a description which is written in Markdown file. Usage: @docs path/to/markdown.md
@depends You can this tag when you want to write dependencies explicitly. This application supports the automatic recognization of dependencies for some languages such as C++, so there are some cases you need not to write this.
@ignore This application does not generate the documentation of the library file which this tag is specified.

TeX expressions like $(N \sum_i A_i)$ are also supported by the MathJax library.

Tips

Authors

Project details


Download files

Download the file for your platform. If you're not sure which to choose, learn more about installing packages.

Source Distributions

No source distribution files available for this release.See tutorial on generating distribution archives.

Built Distribution

Supported by

AWS AWS Cloud computing and Security Sponsor Datadog Datadog Monitoring Fastly Fastly CDN Google Google Download Analytics Microsoft Microsoft PSF Sponsor Pingdom Pingdom Monitoring Sentry Sentry Error logging StatusPage StatusPage Status page