Skip to content

Commit d2bea40

Browse files
committed
Updated baseline to not include graph generation algos by default
1 parent 3b3f527 commit d2bea40

File tree

1 file changed

+21
-19
lines changed

1 file changed

+21
-19
lines changed

src/BaselineOfAIGraphAlgorithms/BaselineOfAIGraphAlgorithms.class.st

Lines changed: 21 additions & 19 deletions
Original file line numberDiff line numberDiff line change
@@ -13,37 +13,39 @@ BaselineOfAIGraphAlgorithms >> baseline: spec [
1313
<baseline>
1414
spec for: #common do: [
1515

16+
"External dependencies"
17+
spec
18+
baseline: 'AIExternalPolyMath'
19+
with: [ spec repository: 'github://pharo-ai/external-dependencies' ].
20+
1621
"Packages"
1722
spec package: 'AI-Algorithms-Graph-Components'.
1823
spec
1924
package: 'AI-Algorithms-Graph'
20-
with: [ spec requires: #( 'AI-Algorithms-Graph-Components' ) ]..
25+
with: [ spec requires: #( 'AI-Algorithms-Graph-Components' ) ].
2126
spec
22-
package: 'AI-Algorithms-Graph-Tests' with: [
23-
spec requires: #( 'AI-Algorithms-Graph' 'AI-Algorithms-Graph-Components' ) ] ].
27+
package: 'AI-Algorithms-Graph-Tests'
28+
with: [ spec requires: #( 'AI-Algorithms-Graph' 'AI-Algorithms-Graph-Components' ) ].
2429
spec
2530
package: 'AI-Algorithms-Graph-Generators'
26-
with: [ spec requires: #( 'AI-Algorithms-Graph' 'AI-Algorithms-Graph-Components' ) ].
31+
with: [ spec requires: #( 'AI-Algorithms-Graph' 'AI-Algorithms-Graph-Components' 'AIExternalPolyMath' ) ].
2732
spec
2833
package: 'AI-Algorithms-Graph-Generators-Tests'
2934
with: [ spec requires: #( 'AI-Algorithms-Graph-Generators' ) ].
3035
spec
3136
package: 'AI-Algorithms-Graph-Generators-Examples'
3237
with: [ spec requires: #( 'AI-Algorithms-Graph-Generators' ) ].
3338

34-
"Define groups"
35-
self defineGroups: spec
36-
]
37-
38-
{ #category : #defaults }
39-
BaselineOfAIGraphAlgorithms >> defineGroups: spec [
40-
41-
spec
42-
group: 'Core' with: #( 'AI-Algorithms-Graph' 'AI-Algorithms-Graph-Components');
43-
group: 'Tests' with: #( 'AI-Algorithms-Graph' 'AI-Algorithms-Graph-Components' 'AI-Algorithms-Graph-Tests' ).
44-
spec
45-
group: 'GraphGenerators'
46-
with: #( 'AI-Algorithms-Graph' 'AI-Algorithms-Graph-Components' 'AI-Algorithms-Graph-Generators' );
47-
group: 'GraphGeneratorsTests' with: #( 'AI-Algorithms-Graph-Generators' 'AI-Algorithms-Graph-Generators-Tests' ).
48-
spec group: 'default' with: #( 'Core' 'Tests' 'GraphGenerators' 'GraphGeneratorsTests' )
39+
"Define groups"
40+
spec
41+
group: 'Core' with: #( 'AI-Algorithms-Graph' 'AI-Algorithms-Graph-Components');
42+
group: 'Tests' with: #( 'AI-Algorithms-Graph' 'AI-Algorithms-Graph-Components' 'AI-Algorithms-Graph-Tests' ).
43+
spec
44+
group: 'GraphGenerators'
45+
with: #( 'AI-Algorithms-Graph' 'AI-Algorithms-Graph-Components' 'AI-Algorithms-Graph-Generators' );
46+
group: 'GraphGeneratorsTests'
47+
with: #( 'AI-Algorithms-Graph-Generators' 'AI-Algorithms-Graph-Generators-Tests' ).
48+
49+
spec group: 'default' with: #( 'Core' 'Tests' ).
50+
spec group: 'full' with: #( 'default' 'GraphGenerators' 'GraphGeneratorsTests' ) ]
4951
]

0 commit comments

Comments
 (0)