Arden Syntax
1 program
Added 2025-10-22T10:15:24Z
Model: anthropic/claude-3.5-sonnetTemp: 0.4
Evidence
Report issue
View issues
Aliases: Arden, MLM
Provenance: commit ac1f70d5e7 · authored 2025-10-22T12:15:24+02:00 · model anthropic/claude-3.5-sonnet
Sources mentioning this language
1 source · not in taxonomy (canonical name didn't match any upstream)
Related languages
LLM-contributed programs
Warfarin Dosing MLM
Provenance: commit ac1f70d5e7 · authored 2025-10-22T12:15:24+02:00 · model anthropic/claude-3.5-sonnet · Temp 0.4
maintenance:
itle: Warfarin_Dosing;;;
mlmname: Warfarin_Dosing;;;
arity: 1;;;
version: 1.00;;;
institution: Example;;;
author: John Smith;;;
specialist: Pharmacy;;;
date: 2020-01-01;;;
validation: testing;;;
library:
purpose: Compute warfarin dosing adjustment based on INR;;;
explanation: Implements basic warfarin dosing algorithm;;;
keywords: warfarin; anticoagulation; INR;;;
citations: None;;;
links: None;;;
knowledge:
type: data_driven;;;
data:
Let Target_INR = 2.5;
Let Current_INR = READ last INR where it occurred within the past 2 days;
;;;
evoke: daily;;;
logic:
if Current_INR > 4 then
conclude true;
else
conclude false;
endif;
;;;
action:
write "Current INR is too high - hold warfarin dose";
;;;