We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 16b0512 commit a88be3bCopy full SHA for a88be3b
.gitignore
@@ -19,6 +19,7 @@ bld/
19
20
# Roslyn cache directories
21
*.ide/
22
+.ionide/
23
24
# MSTest test Results
25
[Tt]est[Rr]esult*/
@@ -193,3 +194,4 @@ ModelManifest.xml
193
194
195
# Local test runner
196
testrunner
197
+
DataStructures/Graphs/WeightedEdge.cs
@@ -32,8 +32,7 @@ public class WeightedEdge<TVertex> : IEdge<TVertex> where TVertex : IComparable<
32
/// </summary>
33
public bool IsWeighted
34
{
35
- get
36
- { return false; }
+ get { return true; }
37
}
38
39
/// <summary>
0 commit comments