Skip to content

Commit

Permalink
WI #2045 Add comment on the default execution performed.
Browse files Browse the repository at this point in the history
  • Loading branch information
mayanje committed Oct 27, 2021
1 parent a840251 commit 7f8af6b
Showing 1 changed file with 5 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,11 @@ namespace TypeCobol.Analysis.Graph
public partial class CfgAbstractInterpretation<N,D>
{
/// <summary>
/// Abstract interpretation execution environment
/// Abstract interpretation execution environment.
/// The default execution performed is based on a dfs algorithm, with exception that
/// branching instructions are handled specifically.
/// Thus not all execution paths are applied, but all nodes are visited using dfs like algorithm if they are accessible.
/// A node cannot be visited twice.
/// </summary>
public class Environment
{
Expand Down

0 comments on commit 7f8af6b

Please sign in to comment.