Skip to content

pullrequests Search Results · repo:rvhuang/linq-to-astar language:C#

Filter by

33 results
 (108 ms)

33 results

inrvhuang/linq-to-astar (press backspace or delete to remove)

1. Add AlgorithmObserverFactory TStep .Progresses property that consists of AlgorithmProgress TStep instances created by the factory. 2. Add AlgorithmProgress TStep .States property that consists ...
enhancement
  • rvhuang
  • Opened 
    on Feb 8, 2019
  • #42

The HASHSET_AS_CLOSED_LIST constant will enable A* algorithm back to use HashList T as the closed list. Otherwise, the algorithm will search the node in the closed (unused) section in the open list. This ...
  • rvhuang
  • Opened 
    on Feb 3, 2019
  • #37

1. Fix missing event modifier on AlgorithmProgress.ProgressChanged. 2. Fix missing event modifier on AlgorithmObserverFactory T .Created. 3. Update documentation comments.
bug
  • rvhuang
  • Opened 
    on Feb 1, 2019
  • #36

Including the following changes: 1. Move all examples to new folders. 2. Update NuGet reference to v1.2.0. 3. Update Travis CI settings.
enhancement
  • rvhuang
  • Opened 
    on Jan 24, 2019
  • #35

Including the following changes: 1. Provide the default implementation of IAlgorithmObserverFactory T . 2. Add new interfaces INode T and IAlgorithmState T that provide abstract views of node and ...
enhancement
  • rvhuang
  • Opened 
    on Jan 23, 2019
  • #34

Bug Fixes 1. Fix a bug where BFS in observer mode does not produce correct solution. 2. Fix a bug where RBFS in observer mode does not report start as the first state. Misc 1. Add new test cases. ...
enhancement
  • rvhuang
  • Opened 
    on Jan 16, 2019
  • #33

Functional Changes 1. The interface IAlgorithmObserverFactory has been redesigned for easier use from caller s side. 2. All APIs that accept IAlgorithmObserverFactory arguments have been changed. 3. ...
enhancement
  • rvhuang
  • Opened 
    on Jan 14, 2019
  • #32

Including following changes: 1. New interface IAlgorithmObserverFactory and a set of APIs have been added to support algorithm observation. 2. All built-in algorithms now can be observed. 3. Fix incorrect ...
enhancement
  • rvhuang
  • Opened 
    on Jan 11, 2019
  • #31

1. If orderby clause is not given and TFactor does not implement IComparable TFactor interface, only g(n) will be used to compare. For algorithms that need h(n) will throw InvalidOperationException. ...
enhancement
  • rvhuang
  • Opened 
    on Aug 1, 2018
  • #30

1. Now InvalidOperationException will be thrown if orderby clause is not given or TStep is not comparable. 2. Consolidate internal constructors. 3. Add exception test case.
enhancement
  • rvhuang
  • Opened 
    on Jul 24, 2018
  • #29