2024-11-16 17:28:46 -06:00
|
|
|
module Debate.Arguments.Ethics.EfilismPatrolSquad exposing (..)
|
|
|
|
|
|
|
|
import Debate.Types exposing (..)
|
|
|
|
|
|
|
|
|
|
|
|
argumentEfilismPatrolSquad : Argument
|
|
|
|
argumentEfilismPatrolSquad =
|
|
|
|
{ argumentTitle = "Title"
|
|
|
|
, propositionTitle = "Proposition"
|
|
|
|
, propositionSummary = "Summary"
|
|
|
|
, proofLink = ""
|
|
|
|
, definitionTable =
|
|
|
|
[ { definiendum = ""
|
2024-11-16 18:34:05 -06:00
|
|
|
, definiens = ""
|
2024-11-16 17:28:46 -06:00
|
|
|
}
|
|
|
|
, { definiendum = ""
|
2024-11-16 18:34:05 -06:00
|
|
|
, definiens = ""
|
2024-11-16 17:28:46 -06:00
|
|
|
}
|
|
|
|
, { definiendum = ""
|
2024-11-16 18:34:05 -06:00
|
|
|
, definiens = ""
|
2024-11-16 17:28:46 -06:00
|
|
|
}
|
|
|
|
, { definiendum = ""
|
2024-11-16 18:34:05 -06:00
|
|
|
, definiens = ""
|
2024-11-16 17:28:46 -06:00
|
|
|
}
|
|
|
|
, { definiendum = ""
|
2024-11-16 18:34:05 -06:00
|
|
|
, definiens = ""
|
2024-11-16 17:28:46 -06:00
|
|
|
}
|
|
|
|
, { definiendum = ""
|
2024-11-16 18:34:05 -06:00
|
|
|
, definiens = ""
|
2024-11-16 17:28:46 -06:00
|
|
|
}
|
|
|
|
]
|
|
|
|
, argumentFormalization =
|
|
|
|
[ { premises =
|
2024-11-16 18:34:05 -06:00
|
|
|
[ { premise = ""
|
2024-11-16 17:28:46 -06:00
|
|
|
, notation = ""
|
|
|
|
}
|
2024-11-16 18:34:05 -06:00
|
|
|
, { premise = ""
|
2024-11-16 17:28:46 -06:00
|
|
|
, notation = ""
|
|
|
|
}
|
2024-11-16 18:34:05 -06:00
|
|
|
, { premise = ""
|
2024-11-16 17:28:46 -06:00
|
|
|
, notation = ""
|
|
|
|
}
|
2024-11-16 18:34:05 -06:00
|
|
|
, { premise = ""
|
2024-11-16 17:28:46 -06:00
|
|
|
, notation = ""
|
|
|
|
}
|
2024-11-16 18:34:05 -06:00
|
|
|
, { premise = ""
|
2024-11-16 17:28:46 -06:00
|
|
|
, notation = ""
|
|
|
|
}
|
|
|
|
]
|
2024-11-16 18:34:05 -06:00
|
|
|
, conclusion = ""
|
2024-11-16 17:28:46 -06:00
|
|
|
, conclusionNotation = "(∴)"
|
|
|
|
}
|
|
|
|
]
|
|
|
|
}
|