Skip to content

Commit aaeed03

Browse files
committed
minor docs site content tweaks
1 parent fa28e80 commit aaeed03

File tree

3 files changed

+3
-3
lines changed

3 files changed

+3
-3
lines changed

src/SCFirstOrderLogic.Documentation/Razor/Pages/GettingStarted.razor.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -238,7 +238,7 @@ using SCFirstOrderLogic.Inference.Basic.Resolution;
238238
var clauseStore = new FeatureVectorIndexClauseStore<MaxDepthFeature>(
239239
MaxDepthFeature.MakeFeatureVector,
240240
new ClauseStoreFVIListNode<MaxDepthFeature>(MaxDepthFeature.MakeFeatureComparer()));
241-
// ..or var clauseStore = new HashSetClauseSetore(); for a simpler, less powerful clause store.
241+
// ..or var clauseStore = new HashSetClauseStore(); for a simpler, less powerful clause store.
242242
243243
var kb = new ResolutionKnowledgeBase(new LinearResolutionStrategy(
244244
clauseStore,

src/SCFirstOrderLogic.Documentation/Razor/Pages/lab/FeatureVectorIndexVisualiser.razor

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -28,7 +28,7 @@
2828
</p>
2929
<p>
3030
Feature vector indices (in this context, at least) are an indexing structure for CNF clauses that enable quick lookup of stored clauses that subsume or are subsumed by a query term.
31-
The general idea is that for each stored clause and query clause, we calculate a set of "features" (essentially, metrics) that will always have a greater or equal value for subsumed clauses.
31+
The general idea is that for each stored clause and query clause, we calculate a set of "features" (a feature being some non-negative integer value computed from the clause) that will always have a greater or equal value for subsumed clauses.
3232
</p>
3333
<p>
3434
Note that:

src/SCFirstOrderLogic/ClauseIndexing/AsyncFeatureVectorIndex{TFeature,TValue}.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,7 @@ namespace SCFirstOrderLogic.ClauseIndexing;
2424
// TODO-BREAKING: Support for cancellation.
2525
// TODO-PERFORMANCE: at least on the read side, consider processing nodes in parallel.
2626
// what are some best practices here (esp re consumers/node implementers being able to control DoP)?
27-
// e.g allow consumers to pass a scheduler? allow nodes to specify a scheduler? or just expect caller to manage via appropriate context?
27+
// e.g allow consumers to pass a scheduler? allow nodes to specify a scheduler? or just expect caller to manage via sync context?
2828
public class AsyncFeatureVectorIndex<TFeature, TValue> : IAsyncEnumerable<KeyValuePair<CNFClause, TValue>>
2929
where TFeature : notnull
3030
{

0 commit comments

Comments
 (0)