Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
9 changes: 9 additions & 0 deletions modules/ROOT/content-nav.adoc
Original file line number Diff line number Diff line change
Expand Up @@ -21,6 +21,15 @@
** xref:insurance/claims-fraud.adoc[]
** xref:insurance/quote-fraud.adoc[]

* xref:manufacturing/index.adoc[]
** xref:manufacturing/supply-chain-management/index.adoc[]
*** xref:manufacturing/supply-chain-management/ev-route-planning.adoc[E.V. Route Planning]
** xref:manufacturing/product-design-and-engineering/index.adoc[]
*** xref:manufacturing/product-design-and-engineering/configurable-bom.adoc[Configurable B.O.M.]
*** xref:manufacturing/product-design-and-engineering/engineering-traceability.adoc[Engineering Traceability]
** xref:manufacturing/production-planning-and-optimization/index.adoc[]
*** xref:manufacturing/production-planning-and-optimization/process-monitoring-and-cpa.adoc[Process Monitoring and CPA]

* xref:agnostic/index.adoc[]
** xref:agnostic/entity-resolution.adoc[Entity Resolution]
** xref:agnostic/it-service-graph/it-service-graph.adoc[]
Expand Down
Original file line number Diff line number Diff line change
@@ -0,0 +1,132 @@
:params {
id_variant: "awesome_bike_loose_constraints",
scoring: [
{
field: "cost",
factor: -1000
},
{
field: "weight",
factor: -1
}
],
constraints: [
{
category: "wheel_size",
properties: [
{
name: "wheel_size",
type: "float",
description: "Size of the wheel in inches",
deny_list: [
26.0
]
}
]
},
{
category: "rim",
properties: [
{
name: "material",
type: "string",
description: "material of the rim",
allow_list: [
"Carbon"
]
}
]
},
{
category: "tire",
properties: [
{
name: "pattern",
type: "string",
description: "Type of tire",
allow_list: [
"Knobby"
]
}
]
},
{
category: "frame_material",
properties: [
{
name: "material",
type: "string",
description: "frame material",
deny_list: [
"Carbon Fiber"
]
}
]
},
{
category: "color",
properties: [
{
name: "color",
type: "string",
description: "color of the bike",
allow_list: [
"Black Paint"
]
}
]
},
{
category: "caliper",
properties: [
{
name: "caliper",
type: "string",
description: "Type of caliper",
allow_list: [
"Mechanical"
]
}
]
},
{
category: "shifter",
properties: [
{
name: "shifter",
type: "string",
description: "Type of Shifter",
allow_list: [
"Trigger"
]
}
]
},
{
category: "derailleur",
properties: [
{
name: "derailleur",
type: "string",
description: "Type of Derailleur",
allow_list: [
"Advanced"
]
}
]
},
{
category: "gear_system",
properties: [
{
name: "gear_system",
type: "string",
description: "gear system type",
deny_list: [
"7-Speed"
]
}
]
}
]
}
Original file line number Diff line number Diff line change
@@ -0,0 +1,131 @@
:params {
id_variant: "awesome_bike_no_color",
scoring: [
{
field: "cost",
factor: -1000
},
{
field: "weight",
factor: -1
}
],
constraints: [
{
category: "wheel_size",
properties: [
{
name: "wheel_size",
type: "float",
description: "Size of the wheel in inches",
allow_list: [
26.0
]
}
]
},
{
category: "rim",
properties: [
{
name: "material",
type: "string",
description: "material of the rim",
allow_list: [
"Carbon"
]
}
]
},
{
category: "tire",
properties: [
{
name: "pattern",
type: "string",
description: "Type of tire",
allow_list: [
"Knobby"
]
}
]
},
{
category: "frame_material",
properties: [
{
name: "material",
type: "string",
description: "frame material",
deny_list: [
"Carbon Fiber"
]
}
]
},
{
category: "color",
properties: [
{
name: "color",
type: "string",
description: "color of the bike",
allow_list: [
]
}
]
},
{
category: "caliper",
properties: [
{
name: "caliper",
type: "string",
description: "Type of caliper",
allow_list: [
"Mechanical"
]
}
]
},
{
category: "shifter",
properties: [
{
name: "shifter",
type: "string",
description: "Type of Shifter",
allow_list: [
"Trigger"
]
}
]
},
{
category: "derailleur",
properties: [
{
name: "derailleur",
type: "string",
description: "Type of Derailleur",
allow_list: [
"Advanced"
]
}
]
},
{
category: "gear_system",
properties: [
{
name: "gear_system",
type: "string",
description: "gear system type",
allow_list: [
"12-Speed"
]
}
]
}
]
}
Loading