Skip to content

Commit

Permalink
added comments to clarify pre defined program
Browse files Browse the repository at this point in the history
  • Loading branch information
mickeyasa committed Nov 25, 2024
1 parent b983193 commit b1d485b
Showing 1 changed file with 4 additions and 1 deletion.
5 changes: 4 additions & 1 deletion icicle/include/icicle/program/program.h
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,10 @@ namespace icicle {

using InstructionType = uint32_t;

enum PreDefinedPrograms { AB_MINUS_C = 0, EQ_X_AB_MINUS_C };
enum PreDefinedPrograms {
AB_MINUS_C = 0, // (A*B)-C
EQ_X_AB_MINUS_C // E*(A*B-C)
};

/**
* @brief A class that convert the function described by user into a program that can be executed
Expand Down

0 comments on commit b1d485b

Please sign in to comment.