Skip to content

Instantly share code, notes, and snippets.

View sailik1991's full-sized avatar
:electron:
Learning, Decoding, and Evolving

Sailik Sengupta sailik1991

:electron:
Learning, Decoding, and Evolving
View GitHub Profile
@sailik1991
sailik1991 / 0.0 Decision Support.md
Last active February 12, 2020 01:26
This is a PDDL domain file for RADAR's fire-fighting scenario. The system is demonstrated in https://www.youtube.com/watch?v=5BTsNRB9p3o&t.
@sailik1991
sailik1991 / 0.0 Optimization References.md
Created April 8, 2020 16:36
References for understanding Optimization basics
@sailik1991
sailik1991 / 0.0 Task_planning_resources.md
Last active April 8, 2020 16:38
Task planning for users!

In trying to use planning for decision support systems, there have been an array of automated planning techniques and softwares that we have tried to use. Here is a list of things we believe others might find useful:

A quick guide to setup pytest for your python code. Convert your code into a package by using the following directory structure.

setup.py
src
-- /a/1.py
tests
-- test_a_1.py

The setup.py file is configured as follows:

Generates a bipartite graph with vertex sets V1 an V2 and edge list E

\begin{figure}[t]
\centering
\begin{tikzpicture}
% V1
\foreach \i in {-2, -1, ..., 2} {
    \node at (\i, 0) (v\i) {$v_{\i}$};
    \fill (\i, -0.25) circle (1.5pt);
}